-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
48 lines (48 loc) · 1.48 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"@typescript-eslint/no-use-before-define": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/no-array-index-key": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react/function-component-definition": "off",
"@typescript-eslint/no-unused-vars": "warn",
"jsx-a11y/anchor-is-valid": "warn",
"import/prefer-default-export": "off",
"react-hooks/exhaustive-deps": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/label-has-associated-control": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"jsx-a11y/interactive-supports-focus": "off",
"linebreak-style": "off",
"react/no-unstable-nested-components": [
"warn",
{
"allowAsProps": true,
"customValidators": [] /* optional array of validators used for propTypes validation */
}
]
}
}