From 6244568004bb7d7cd63f6cbf57796797fd9ec992 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Fri, 22 Mar 2024 16:59:10 +0000 Subject: [PATCH] fix: prettier incompatibility with standard --- .vscode/settings.json | 6 +++++- src/components/CV/CV.jsx | 37 +++++++++++++++++++++++++++++++------ 2 files changed, 36 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b0c8b24..9652cd8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,9 @@ "cSpell.words": [ "Dirents", "Sitecore" - ] + ], + "files.autoSave": "off", + "standard.autoFixOnSave": true, + "prettier.enable": false, + "editor.defaultFormatter": "standard.vscode-standard" } \ No newline at end of file diff --git a/src/components/CV/CV.jsx b/src/components/CV/CV.jsx index 531ab47..61ac9fb 100644 --- a/src/components/CV/CV.jsx +++ b/src/components/CV/CV.jsx @@ -2,23 +2,37 @@ import React from 'react' import style from './CV.module.css' -function CV ({ competencies, education, certifications, languages, experience }) { +function CV ({ + competencies, + education, + certifications, + languages, + experience +}) { return (

Core competencies

    - {competencies.sort().map((c, i) =>
  • {c}
  • )} + {competencies.sort().map((c, i) => ( +
  • {c}
  • + ))}

Certifications

    - {certifications.sort().map((c, i) =>
  • {c}
  • )} + {certifications.sort().map((c, i) => ( +
  • {c}
  • + ))}

Languages

    - {languages.sort().map((c, i) =>
  • {c.name} - {c.proficiency}
  • )} + {languages.sort().map((c, i) => ( +
  • + {c.name} - {c.proficiency} +
  • + ))}

Education history

@@ -28,7 +42,15 @@ function CV ({ competencies, education, certifications, languages, experience })

Professional experience

{experience.map((exp, i) => ( - {exp.desc} + + {exp.desc} + ))}
@@ -50,7 +72,10 @@ function CVWorkExperience ({ position, employer, start, end, children }) { - -
+
) }