-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
53 lines (49 loc) · 1.52 KB
/
.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
50
51
52
53
{ "rules":
{ "comma-spacing" : 0
, "consistent-return" : 0
, "curly" : 0
, "eol-last" : 0
, "eqeqeq" : 0
, "key-spacing" : 0
, "no-comma-dangle" : 0
, "no-console" : 0
, "no-extend-native" : 0
, "no-extra-semi" : 0
, "no-multi-spaces" : 0
, "no-multi-str" : 0
, "no-new-func" : 0
, "no-return-assign" : 0
, "no-shadow" : 0
, "no-space-before-semi" : 0
, "no-spaced-func" : 0
, "no-sparse-arrays" : 0
, "no-unused-expressions": 0
, "no-use-before-define" :
[0, "nofunc"]
, "no-with" : 0
, "space-infix-ops" : 0
, "space-unary-ops" : 0
, "strict" : 0
, "quotes" : 0
, "yoda" : 0
}
,
"parserOptions":
{ "ecmaVersion" : 6
, "ecmaFeatures":
{ "defaultParams" : true
, "destructuring" : true
, "forOf" : true
, "objectLiteralShorthandMethods" : true
, "objectLiteralShorthandProperties": true
, "restParams" : true
, "spread" : true
, "templateStrings" : true
}
}
,
"env":
{ "browser" : true
, "node" : false
}
}