Linter bracket spacing

This commit is contained in:
Natsumi
2023-05-10 16:46:52 +12:00
parent 0ab84f1714
commit debaba13b0
2 changed files with 12 additions and 11 deletions

View File

@@ -85,6 +85,7 @@
"sort-keys": 0,
"sort-vars": 0,
"strict": 0,
"vars-on-top": 0
"vars-on-top": 0,
"object-curly-spacing": ["error", "always"]
}
}

View File

@@ -1,12 +1,12 @@
{
"printWidth": 80,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "always",
"vueIndentScriptAndStyle": true,
"endOfLine": "auto"
"printWidth": 80,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"vueIndentScriptAndStyle": true,
"endOfLine": "auto"
}