fix: prettier incompatibility with standard

This commit is contained in:
Aaron Yarborough 2024-03-22 16:59:10 +00:00
parent 77b83621eb
commit 6244568004
2 changed files with 36 additions and 7 deletions

View file

@ -2,5 +2,9 @@
"cSpell.words": [ "cSpell.words": [
"Dirents", "Dirents",
"Sitecore" "Sitecore"
] ],
"files.autoSave": "off",
"standard.autoFixOnSave": true,
"prettier.enable": false,
"editor.defaultFormatter": "standard.vscode-standard"
} }

View file

@ -2,23 +2,37 @@ import React from 'react'
import style from './CV.module.css' import style from './CV.module.css'
function CV ({ competencies, education, certifications, languages, experience }) { function CV ({
competencies,
education,
certifications,
languages,
experience
}) {
return ( return (
<div className={style.cv}> <div className={style.cv}>
<div> <div>
<h2>Core competencies</h2> <h2>Core competencies</h2>
<ul> <ul>
{competencies.sort().map((c, i) => <li key={i}>{c}</li>)} {competencies.sort().map((c, i) => (
<li key={i}>{c}</li>
))}
</ul> </ul>
<h2>Certifications</h2> <h2>Certifications</h2>
<ul> <ul>
{certifications.sort().map((c, i) => <li key={i}>{c}</li>)} {certifications.sort().map((c, i) => (
<li key={i}>{c}</li>
))}
</ul> </ul>
<h2>Languages</h2> <h2>Languages</h2>
<ul> <ul>
{languages.sort().map((c, i) => <li key={i}>{c.name} - {c.proficiency}</li>)} {languages.sort().map((c, i) => (
<li key={i}>
{c.name} - {c.proficiency}
</li>
))}
</ul> </ul>
<h2>Education history</h2> <h2>Education history</h2>
@ -28,7 +42,15 @@ function CV ({ competencies, education, certifications, languages, experience })
<h2>Professional experience</h2> <h2>Professional experience</h2>
{experience.map((exp, i) => ( {experience.map((exp, i) => (
<CVWorkExperience key={i} employer={exp.employer} position={exp.position} start={exp.start} end={exp.end}>{exp.desc}</CVWorkExperience> <CVWorkExperience
key={i}
employer={exp.employer}
position={exp.position}
start={exp.start}
end={exp.end}
>
{exp.desc}
</CVWorkExperience>
))} ))}
</div> </div>
</div> </div>
@ -50,7 +72,10 @@ function CVWorkExperience ({ position, employer, start, end, children }) {
<time>{start}</time> - <time>{end}</time> <time>{start}</time> - <time>{end}</time>
</small> </small>
</div> </div>
<div data-test='children' dangerouslySetInnerHTML={{ __html: children }} /> <div
data-test='children'
dangerouslySetInnerHTML={{ __html: children }}
/>
</div> </div>
) )
} }