Enforce brace style

This commit is contained in:
Pierre Ossman
2018-09-06 15:39:26 +02:00
parent e15950a8ef
commit a98881151f
3 changed files with 10 additions and 8 deletions
+6
View File
@@ -8,6 +8,8 @@
},
"extends": "eslint:recommended",
"rules": {
// Unsafe or confusing stuff that we forbid
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }],
"no-constant-condition": ["error", { "checkLoops": false }],
"no-var": "error",
@@ -18,5 +20,9 @@
"arrow-parens": ["error", "as-needed", { "requireForBlockBody": true }],
"arrow-spacing": ["error"],
"no-confusing-arrow": ["error", { "allowParens": true }],
// Enforced coding style
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
}
}