Add Prettier

This commit is contained in:
Bryan Ashby
2022-06-05 13:53:57 -06:00
parent c1311f063f
commit eecfb33ad5
3 changed files with 26 additions and 1 deletions

19
.prettierrc.json Normal file
View File

@@ -0,0 +1,19 @@
{
"arrowParens": "avoid",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 90,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}