-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.eslintrc
71 lines (71 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"extends": "eslint:recommended",
"root": true,
"env": {
"es6": true
},
"plugins": [
"react"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"fetch": false,
"console": false,
"require": false,
"module": false,
"window": false,
"alert": false,
"setTimeout": false,
"clearTimeout": false,
"setInterval": false,
"clearInterval": false,
"Promise": false,
"__DEV__": false
},
"rules": {
"strict": 0,
"semi": [2, "always"],
"curly": 2,
"dot-notation": 2,
"radix": 2,
"wrap-iife": 2,
"eqeqeq": [2, "allow-null"],
"block-scoped-var": 2,
"consistent-return": 2,
"no-alert": 0,
"no-console": 0,
"no-new-wrappers": 2,
"no-native-reassign": 2,
"no-extend-native": 2,
"no-implicit-coercion": 2,
"no-sequences": 2,
"no-unused-expressions": 2,
"no-useless-call": 2,
"no-useless-concat": 2,
"no-warning-comments": 2,
"no-shadow-restricted-names": 2,
"no-undef-init": 2,
"no-with": 2,
"react/jsx-boolean-value": 0,
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-danger": 0,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/no-unknown-property": 2,
"react/react-in-jsx-scope": 2,
"react/self-closing-comp": 2,
"react/jsx-wrap-multilines": 2
}
}