-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (36 loc) · 897 Bytes
/
.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
{
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"fixture": false,
"test": false
},
"root": true,
"rules": {
"class-methods-use-this": "off",
"import/no-unresolved": "off",
"import/order": "off",
"import/prefer-default-export": "off",
"max-classes-per-file": "off",
"max-len": ["warn", 100],
"newline-per-chained-call": "off",
"no-await-in-loop": "off",
"no-continue": "off",
"no-param-reassign": "warn",
"no-plusplus": "off",
"no-undef": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }],
"object-curly-newline": ["error", {
"consistent": true,
"multiline": true
}],
"wrap-iife": ["error", "inside"]
}
}