-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 loc) · 857 Bytes
/
.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
{
"extends": [
"react-app",
"airbnb",
"airbnb-babel",
"airbnb/hooks",
"plugin:jsx-a11y/recommended",
"prettier",
"prettier/react"
// "plugin:react-redux/recommended"
],
"plugins": ["jsx-a11y", "prettier"],
"rules": {
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"no-console": "off",
"no-shadow": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/state-in-constructor": "off",
"react/static-property-placement": "off",
"react/jsx-props-no-spreading": "off",
"react/button-has-type": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/no-onchange": "off"
},
"env": {
"browser": true
}
}