-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.json
44 lines (44 loc) · 938 Bytes
/
.eslintrc.json
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
{
"rules": {
"indent": [2, 2, {"SwitchCase": 1}],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "never"],
"no-console": 0,
"prefer-const": 2,
"no-const-assign": 2,
"no-var": 2,
"object-shorthand": 2,
"quote-props": [2, "as-needed", { "keywords": true }],
"prefer-arrow-callback": 2,
"arrow-spacing": 2,
"camelcase": 2,
"new-cap": 2,
"one-var": [2, "never"],
"eqeqeq": 2,
"comma-style": 2,
"no-nested-ternary": 2,
"no-unneeded-ternary": 2
},
"globals": {
"React": true,
"_": true
},
"env": {
"browser": true,
"es6": true,
"jquery": true,
"mocha": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true,
"blockBindings": true
}
},
"extends": "eslint:recommended"
}