-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
76 lines (76 loc) · 1.8 KB
/
.eslintrc.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
module.exports = {
'root': true,
'extends': [
'eslint:recommended',
'plugin:eslint-plugin/recommended',
'plugin:node/recommended',
],
'rules': {
'quotes': [2, 'single', { 'avoidEscape': true }],
'no-irregular-whitespace': 'warn',
'brace-style': ['error', '1tbs',
{
allowSingleLine: true,
},
],
'indent': ['error', 2],
'array-bracket-spacing': ['error', 'never',
],
'object-curly-spacing': ['error', 'always',
],
'computed-property-spacing': ['error', 'never',
],
'space-in-parens': ['error', 'never',
],
'no-trailing-spaces': 'error',
'template-curly-spacing': 'off',
'no-template-curly-in-string': 'off',
'max-len': 'off',
semi: ['error', 'always',
{
omitLastInOneLineBlock: true,
},
],
'comma-dangle': ['error', 'always-multiline',
],
'prefer-destructuring': 'off',
'no-console': 'error',
'no-debugger': 'error',
'object-curly-newline': [
'error',
{
ImportDeclaration: 'never', ExportDeclaration: 'never',
},
],
'no-unused-vars': 'warn',
'no-unused-expressions': 'warn',
'consistent-return': 'off',
'no-case-declarations': 'error',
'no-use-before-define': ['error',
{
functions: false,
},
],
'default-case': 'error',
'no-plusplus': ['warn',
{
allowForLoopAfterthoughts: true,
},
],
'import/prefer-default-export': 'off',
'class-methods-use-this': 'warn',
'no-multiple-empty-lines': ['error',
{
max: 3,
},
],
'func-names': ['error', 'as-needed',
],
'arrow-parens': ['error', 'always',
],
radix: 'warn',
'no-param-reassign': 'error',
'no-underscore-dangle': 'off',
'prefer-promise-reject-errors': 'off',
},
};