Initial commit

This commit is contained in:
2023-08-31 21:44:37 -05:00
commit f7a8fe6ea8
23 changed files with 10464 additions and 0 deletions

25
.prettierrc.json Normal file
View File

@@ -0,0 +1,25 @@
{
"printWidth": 100,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"overrides": [
{
"files": ["*.html"],
"options": { "parser": "vue" }
},
{
"files": ["*.{cjs,mjs,js,jsx,ts,tsx,d.ts,css,html,graphql}"],
"options": { "useTabs": true }
},
{
"files": ["*.{json,yml,yaml}"],
"options": { "tabWidth": 2 }
}
]
}