chore: update project code style conf

This commit is contained in:
Sonny
2023-11-26 01:28:01 +01:00
parent 557aa4444c
commit c0af440302
4 changed files with 35 additions and 11 deletions

View File

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