-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.eslintrc
58 lines (56 loc) · 1.15 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
54
55
56
57
58
{
"parser": "babel-eslint",
"ecmaFeatures": {
"jsx": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"strict": [0],
"react/jsx-uses-vars": [2],
"eol-last": [2],
"no-mixed-requires": [1],
"no-underscore-dangle": [0],
"block-scoped-var": [1],
"curly": [1],
"eqeqeq": [1],
"guard-for-in": [2],
"no-empty-label": [1],
"no-eval": [1],
"no-extra-bind": [1],
"no-implied-eval": [1],
"no-labels": [2],
"no-lone-blocks": [1],
"no-multi-spaces": [0],
"no-redeclare": [1],
"no-unused-vars": [1],
"no-unused-expressions": [0],
"no-with": [2],
"radix": [2],
"dot-notation": [0],
"new-parens": [1],
"consistent-return": [1],
"semi": [1],
"camelcase": [1],
"quotes": [2, "single"],
"key-spacing": [1],
"new-cap": [0],
"no-mixed-spaces-and-tabs": [2],
"no-space-before-semi": [1],
"no-trailing-spaces": [1],
"max-len": [120]
},
"plugins": [
"eslint-plugin-react"
],
"globals": {
"chai": false,
"describe": false,
"it": false,
"beforeEach": false,
"afterEach": false
}
}