-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.34 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["**/tsconfig.json"],
"createDefaultProgram": true
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"rules": {
"react/react-in-jsx-scope": 0,
"react/jsx-indent": ["warn", 4],
"react/jsx-no-useless-fragment": "warn",
"prettier/prettier": "warn",
"no-console": "off",
"prefer-const": "warn",
"react/button-has-type": "off",
"react/function-component-definition": "off",
"react/require-default-props": "warn",
"react/no-unused-prop-types": "warn",
"react/prop-types": "off",
"no-empty": ["warn", { "allowEmptyCatch": true }],
"no-nested-ternary": "off",
"no-plusplus": "off",
"react-hooks/exhaustive-deps": "off",
"react/self-closing-comp": "warn",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/anchor-is-valid": "off"
}
}