assignment 1

This commit is contained in:
Joey Eamigh
2024-09-20 20:10:37 -04:00
commit 52202eeb6f
42 changed files with 4838 additions and 0 deletions

24
.prettierrc.js Normal file
View File

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