-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.json
68 lines (68 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"env": {
"browser": true,
"es6": true,
"node": true,
"commonjs": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jsx-a11y/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": ["react", "html", "import", "jsx-a11y"],
"settings": {
"react": {
"version": "detect"
},
"html/html-extensions": [".dust"]
},
"rules": {
"no-extra-semi": "off",
"quotes": ["off"],
"eol-last": ["error", "always"],
"prefer-arrow-callback": ["error"],
"no-trailing-spaces": "error",
"no-unused-vars": "error",
"prefer-const": "error",
"react/jsx-tag-spacing": "error",
"react/display-name": "error",
"react/no-access-state-in-setstate": "error",
"react/no-array-index-key": "error",
"react/no-did-mount-set-state": "error",
"react/no-did-update-set-state": "error",
"react/no-render-return-value": "error",
"react/no-unused-prop-types": "error",
"react/no-unused-state": "error",
"react/no-find-dom-node": "error",
"react/jsx-no-bind": "off",
"react/jsx-no-duplicate-props": "error",
"react/sort-prop-types": "error",
"import/no-unresolved": [
"error",
{
"commonjs": true
}
],
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/label-has-for": [
"error",
{
"required": {
"some": ["nesting", "id"]
}
}
]
}
}