-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
47 lines (47 loc) · 993 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
{
"ecmaFeatures": {
"jsx": true,
"arrowFunctions": true,
"blockBindings": true,
"generators": true,
"forOf": true,
"modules": true,
"templateStrings": true,
"objectLiteralShorthandProperties": true
},
"rules": {
"strict": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-script-url": 0,
"no-unused-expressions": 0,
"curly": 0,
"no-multi-spaces": 0,
"key-spacing": 0,
"no-return-assign": 0,
"consistent-return": 0,
"no-shadow": 0,
"no-comma-dangle": 0,
"no-use-before-define": 0,
"no-mixed-requires": 0,
"no-trailing-spaces": 0,
"no-empty": 0,
"no-alert": 0,
"new-parens": 0,
"no-cond-assign": 0,
"quotes": [2, "single", "avoid-escape"],
"camelcase": 0,
"new-cap": [1, { "capIsNew": false }],
"no-undef": 2
},
"env": {
"node": true,
"browser": true
},
"globals": {
"$": true,
"_": true,
"locals": true,
"GeekPark": true
}
}