forked from hoppula/refire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
46 lines (46 loc) · 1.04 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
{
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"eol-last": 2,
"eqeqeq": 2,
"no-cond-assign": [2, "always"],
"no-unreachable": 2,
"no-unused-vars": 0,
"no-unused-vars-rest/no-unused-vars": [2, {"ignoreDestructuredVarsWithRest": true}],
"no-undef": 2,
"no-var": 2,
"semi": [2, "never"],
"space-before-blocks": [2, "always"],
"strict": [2, "never"],
"react/jsx-key": 2,
"react/jsx-max-props-per-line": [2, {"maximum": 2}],
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/no-direct-mutation-state": 2,
"react/no-unknown-property": 2,
"react/jsx-wrap-multilines": 2
},
"plugins": [
"react",
"no-unused-vars-rest"
]
}