-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
44 lines (44 loc) · 1.04 KB
/
.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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"installedESLint": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"strict": 0,
"linebreak-style": [
"error", "unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "warn",
"react/no-deprecated": "error",
"react/no-danger": "warn",
"react/prefer-es6-class": "warn",
"react/prop-types": "warn",
"react/self-closing-comp": "warn",
"react/jsx-no-duplicate-props": "warn",
"react/jsx-no-comment-textnodes": "error",
"react/jsx-no-undef": "error"
}
}