forked from stolostron/grc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
82 lines (81 loc) · 2.16 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"env": {
"browser": true,
"es6": true,
"node": true,
"commonjs": true,
"jest": true,
"cypress/globals": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jsx-a11y/recommended",
"plugin:cypress/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react",
"html",
"import",
"jsx-a11y",
"cypress"
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx"
]
}
}
},
"rules": {
"quotes": ["error", "single"],
"eol-last": ["error", "always"],
"semi": ["error", "never"],
"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-deprecated": 1,
"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" ]
}
}]
}
}