-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.json
70 lines (70 loc) · 2.2 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
{
"env": {
"browser": true,
"es2021": true,
"jest": true
},
"extends": ["plugin:react/recommended", "airbnb", "plugin:prettier/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"globals": {
"JSX": "readonly"
},
"plugins": ["react", "react-hooks", "@typescript-eslint", "prettier"],
"rules": {
"no-use-before-define": "off",
"jsx-a11y/heading-has-content": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/anchor-is-valid": "off",
"@typescript-eslint/no-use-before-define": ["error", { "variables": false }],
"@typescript-eslint/no-unused-vars": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"react/function-component-definition": ["error", {
"namedComponents": ["arrow-function", "function-declaration", "function-expression"],
"unnamedComponents": []
}],
"react/react-in-jsx-scope": "off",
"react/require-default-props": ["error", {
"ignoreFunctionalComponents": true
}],
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".jsx", ".tsx"] }],
"import/extensions": [
"error",
{
"extensions": [".js", ".jsx", ".json", ".ts", ".tsx"],
"scss": "always",
"enum": "always"
}
],
"react/prop-types": "off",
"react/jsx-no-bind": ["error", { "allowFunctions": true }],
"spaced-comment": ["error", "always", { "markers": ["/ <reference"] }],
"prettier/prettier": "error",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": [
"warn", {
"additionalHooks": "useRecoilCallback"
}
],
"react/static-property-placement": ["error", "static public field"]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".ts", ".tsx", ".js", ".jsx"]
}
}
}
}