Add prettier formatting

This commit is contained in:
Aiden Bai 2022-04-29 11:09:05 -07:00
parent 5051b4ccd2
commit bef2afcdcf
No known key found for this signature in database
GPG Key ID: D37584388675FF3A

View File

@ -1,6 +1,19 @@
{ {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 100, "printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed", "quoteProps": "as-needed",
"trailingComma": "all", "requirePragma": false,
"tabWidth": 2 "semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
} }