Built resume template

This commit is contained in:
srleom
2024-03-19 16:14:57 +08:00
parent b266e46946
commit 36936150cf
73 changed files with 8970 additions and 0 deletions

22
prettier.config.cjs Normal file
View File

@ -0,0 +1,22 @@
/** @type {import("prettier").Config} */
module.exports = {
// i am just using the standard config, change if you need something else
...require('prettier-config-standard'),
pluginSearchDirs: [__dirname],
plugins: [
'prettier-plugin-astro',
'prettier-plugin-tailwindcss'
],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro'
}
},
],
useTabs: true,
singleQuote: true,
trailingComma: 'none',
printWidth: 100
}