This commit is contained in:
Arne Blumentritt
2021-05-04 14:08:54 +02:00
parent 7173b2ec9e
commit 552e360f6f
4 changed files with 26 additions and 21 deletions

View File

@@ -13,16 +13,16 @@
"dist"
],
"rules": {
"quotes": ["warn", "single"],
"indent": ["warn", 2, { "SwitchCase": 1 }],
"quotes": ["warn", "double"],
"indent": ["warn", "tab"],
"semi": ["off"],
"comma-dangle": ["warn", "always-multiline"],
"dot-notation": "off",
"eqeqeq": "warn",
"curly": ["warn", "all"],
"brace-style": ["warn"],
"brace-style": ["warn", "allman"],
"prefer-arrow-callback": ["warn"],
"max-len": ["warn", 140],
"max-len": ["warn", 200],
"no-console": ["warn"], // use the provided Homebridge log method instead
"no-non-null-assertion": ["off"],
"comma-spacing": ["error"],