-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.eslintrc.js
More file actions
35 lines (35 loc) · 912 Bytes
/
.eslintrc.js
File metadata and controls
35 lines (35 loc) · 912 Bytes
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
module.exports = {
extends: [
require.resolve('kcd-scripts/eslint.js')
],
overrides: [
{
files: ['src/parser/index.js'],
rules: {
'babel/new-cap': 'off',
'babel/no-invalid-this': 'off',
'babel/quotes': 'off',
'complexity': 'off',
'func-names': 'off',
'id-match': 'off',
'max-lines': 'off',
'max-lines-per-function': 'off',
'max-statements': 'off',
'max-statements-per-line': 'off',
'max-depth': 'off',
'no-control-regex': 'off',
'no-negated-condition': 'off',
'no-shadow': 'off',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
'no-var': 'off',
'no-void': 'off',
'one-var': 'off',
'object-shorthand': 'off',
'prefer-template': 'off',
'strict': 'off',
'vars-on-top': 'off',
}
}
]
}