eslint: enable stylistic brace-style

This commit is contained in:
Daniel Micay 2024-11-29 00:41:34 -05:00
parent 665f82200f
commit 56af46f84a
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ export default [
},
rules: {
"no-var": ["error"],
"@stylistic/brace-style": ["error", "1tbs"],
"@stylistic/indent": ["error", 4],
"@stylistic/linebreak-style": ["error", "unix"],
"@stylistic/quotes": ["error", "double"],

View File

@ -1490,6 +1490,7 @@ export default [
rules: {
"no-var": ["error"],
"@stylistic/indent": ["error", 4],
"@stylistic/brace-style": ["error", "1tbs"],
"@stylistic/linebreak-style": ["error", "unix"],
"@stylistic/quotes": ["error", "double"],
"@stylistic/semi": ["error", "always"],