-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslint
49 lines (46 loc) · 1018 Bytes
/
.eslint
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
{
"parser": "babel-eslint",
"extends": "airbnb",
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true,
"jquery": true
},
"rules": {
"no-var": 0,
"no-else-return": 0,
"func-names": 0,
"new-cap": 1,
"vars-on-top": 0,
"padded-blocks": 0,
"comma-dangle": 0,
"no-unused-vars": 0,
"no-alert": 0,
"no-trailing-spaces": 0,
"max-len": 0,
"semi": 0,
"space-before-blocks": 0,
"no-console": 0,
"react/prefer-es6-class": 0,
"keyword-spacing": 0,
"object-curly-spacing" : 0,
"no-mixed-spaces-and-tabs": 0,
"space-before-function-paren": 0,
"quotes": 0,
"jsx-quotes": 0,
"eol-last": 0,
"react/prop-types": 0,
"prefer-arrow-callback": 0,
"prefer-template": 0,
"react/sort-comp": 0,
"react/prefer-stateless-function": 0,
"object-shorthand": 0,
"space-in-parens": 0,
"no-multiple-empty-lines": 0,
"react/jsx-space-before-closing": 0
}
}