-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
58 lines (58 loc) · 1.35 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
{
"extends": [
"eslint:recommended",
"plugin:flowtype/recommended",
"plugin:jest/recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/warnings",
"plugin:import/errors",
"prettier",
"prettier/flowtype",
"prettier/react"
],
"plugins": ["flowtype", "react", "prettier", "jsx-a11y", "import", "react-hooks"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"node": true,
"jest": true,
"browser": true
},
"rules": {
"prettier/prettier": "warn",
"react/display-name": "off",
"eqeqeq": "warn",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/label-has-associated-control": "error",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/no-onchange": "off",
"jsx-a11y/media-has-caption": "off",
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", "parent", "sibling", "index"],
"newlines-between": "always-and-inside-groups"
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"settings": {
"import/resolver": {
"babel-module": {
"root": ["./"]
}
},
"react": {
"version": "detect"
}
}
}