-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
58 lines (58 loc) · 1.24 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
module.exports = {
root: true,
env: {
node: true,
"jest/globals": true
},
extends: [
],
plugins: ['jest'],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module'
},
rules: {
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
'class-methods-use-this': [
'error',
{
exceptMethods: [
'render',
'change',
'changeHandle',
'beforeHandle',
'setTitle',
'bindKeyUp',
'setScroll',
'returnModel',
'popoverClick',
],
},
],
'no-unused-vars': [
'error',
{ varsIgnorePattern: '^V|Moment|Entity$|ENUM$' },
],
'no-underscore-dangle': ['error', { allow: ['_componentTag'] }],
'spaced-comment': 'off',
'no-dupe-keys': 'off',
'no-console': 'always',
'no-extend-native': 'off',
'no-plusplus': 'off',
'max-len': [
'error',
{
code: 100,
ignoreTrailingComments: true,
ignoreComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
],
'no-param-reassign': ['error', { props: false }],
'no-console': 'error',
'no-debugger': 'error'
}
};