-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
49 lines (49 loc) · 823 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
43
44
45
46
47
48
49
{
"rules":{
"strict": [
1,
"global"
],
"indent":[
2,
2
],
"quotes":[
0,
"double"
],
"no-spaced-func": 1,
"space-before-blocks": [
1, "never"
],
"linebreak-style":[
2,
"unix"
],
"semi":[
2,
"always"
],
"eqeqeq": 1,
"no-undef":1,
"no-sync": 2,
"no-unneeded-ternary": 1,
"no-unreachable": 1,
"no-unused-expressions": 1,
"no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
"prefer-arrow-callback": 1,
"quote-props": [1, "consistent-as-needed"],
"valid-jsdoc": 2,
"valid-typeof": 2,
"no-console":1
},
"env":{
"es6":true,
"browser":false,
"node":true
},
"ecmaFeatures":{
"modules": true
},
"extends":"eslint:recommended"
}