happy bday!

This commit is contained in:
Joey Eamigh
2024-05-26 22:45:45 -04:00
commit be3a13eee1
34 changed files with 233005 additions and 0 deletions

23
.prettierrc.mjs Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import("prettier").Config} */
export default {
bracketSpacing: true,
bracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
semi: true,
overrides: [
{
files: ['*.ts', '*.js', '*.tsx', '*.jsx', '*.cjs', '*.mjs', '*.astro'],
options: {
printWidth: 120,
},
},
{
files: ['*.html'],
options: {
printWidth: 100,
},
},
],
};