feat: unplugin-vue-router, prettier, eslint, .gitattributes

This commit is contained in:
Benjamin Singleton 2025-05-13 15:24:17 -05:00
parent 0d98f11e21
commit 53c6efa701
24 changed files with 3175 additions and 169 deletions

17
.prettierrc Normal file
View file

@ -0,0 +1,17 @@
{
"experimentalTernaries": true,
"experimentalOperatorPosition": "start",
"printWidth": 80,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"objectWrap": "collapse",
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
}