forked from itavero/homebridge-z2m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
52 lines (52 loc) · 1.65 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended", // uses the recommended rules from the @typescript-eslint/eslint-plugin
"prettier",
"plugin:prettier/recommended",
"plugin:sonarjs/recommended-legacy",
"plugin:import/recommended",
"plugin:import/typescript"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"ignorePatterns": ["dist"],
"overrides": [
{
"files": ["**/*.spec.ts"],
"rules": {
"sonarjs/no-duplicate-string": ["off"]
}
}
],
"rules": {
"quotes": ["warn", "single"],
"semi": ["off"],
"dot-notation": "off",
"eqeqeq": "error",
"curly": ["error", "all"],
"prefer-arrow-callback": ["warn"],
"max-len": ["warn", 140],
"no-console": ["warn"], // use the provided Homebridge log method instead
"no-non-null-assertion": ["off"],
"lines-between-class-members": [
"warn",
"always",
{ "exceptAfterSingleLine": true }
],
"no-else-return": ["error", { "allowElseIf": false }],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/array-type": ["warn"],
"@typescript-eslint/prefer-for-of": ["warn"],
"@typescript-eslint/adjacent-overload-signatures": ["warn"],
"@typescript-eslint/method-signature-style": ["warn", "method"],
"@typescript-eslint/no-misused-new": ["error"],
"sonarjs/cognitive-complexity": ["error", 20]
}
}