From 6c8d09506642e578fca487f08bc0d54dbbc7d47a Mon Sep 17 00:00:00 2001 From: Orka Arnest Cruze Date: Sun, 12 Nov 2023 16:48:05 +0100 Subject: [PATCH] chore: prettier format tabWidth 4 --- .prettierrc | 2 +- src/App.jsx | 80 +++---- src/assets/fonts/fonts.scss | 40 ++-- src/assets/styles/css_reset.css | 26 +-- src/assets/styles/index.scss | 40 ++-- src/components/Cards/EducationCard.jsx | 56 ++--- src/components/Cards/ExperienceCard.jsx | 76 +++---- src/components/Cards/ProjectCard.jsx | 167 ++++++++------- src/components/Footer.jsx | 91 ++++---- src/components/Navbar.jsx | 140 ++++++------- src/components/SkillsetSection.jsx | 220 +++++++++---------- src/data/education.json | 48 ++--- src/data/experience.json | 50 ++--- src/data/projects.json | 72 +++---- src/data/skills.json | 17 +- src/i18n.js | 33 ++- src/main.jsx | 8 +- src/pages/Home.jsx | 88 ++++---- src/pages/Projects.jsx | 22 +- src/pages/Resume.jsx | 74 +++---- src/translations/en.json | 268 ++++++++++++------------ src/translations/fr.json | 268 ++++++++++++------------ 22 files changed, 954 insertions(+), 932 deletions(-) diff --git a/.prettierrc b/.prettierrc index faa43c9..68cd27f 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/prettierrc", - "tabWidth": 2, + "tabWidth": 4, "printWidth": 120, "trailingComma": "es5", "endOfLine": "auto" diff --git a/src/App.jsx b/src/App.jsx index 0141977..cd4561e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -11,49 +11,49 @@ const Projects = React.lazy(() => import("./pages/Projects")); const Resume = React.lazy(() => import("./pages/Resume")); const App = () => { - const { t } = useTranslation(); + const { t } = useTranslation(); - return ( - -
-

{t("global.loading")}

-
- - } - > - - + return ( + +
+

{t("global.loading")}

+
+ + } + > + + -
- - } /> - } /> - } /> - -
-

{t("pages.not_found.heading")}

-

- - -  {t("pages.not_found.homepage_link_text")} - -

-
- - } - /> -
-
+
+ + } /> + } /> + } /> + +
+

{t("pages.not_found.heading")}

+

+ + +  {t("pages.not_found.homepage_link_text")} + +

+
+ + } + /> +
+
-