generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
eslint.config.mjs
61 lines (56 loc) · 1.73 KB
/
eslint.config.mjs
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
53
54
55
56
57
58
59
60
61
import globals from 'globals';
import pluginJs from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import sonarjs from 'eslint-plugin-sonarjs';
export default [
{ files: ['**/*.{js,mjs,cjs,ts}'] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.strict,
...tseslint.configs.stylistic,
eslintPluginPrettierRecommended,
sonarjs.configs.recommended,
{
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'],
'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],
'@typescript-eslint/no-dynamic-delete': 'off',
},
},
{
files: ['**/*.spec.ts'],
rules: {
'sonarjs/no-duplicate-string': ['off'],
},
},
];