-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.json
94 lines (94 loc) · 2.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"plugins": ["prettier"],
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"import/prefer-default-export": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-use-before-define": "off",
"no-unused-vars": "warn",
"no-case-declarations": "off",
"no-underscore-dangle": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
"no-param-reassign": "off",
"no-empty": "warn",
"import/no-extraneous-dependencies": "warn",
"react/jsx-props-no-spreading": [
"warn",
{
"html": "ignore",
"custom": "enforce",
"explicitSpread": "enforce",
"exceptions": [
"DropdownItem",
"Element",
"FullCalendar",
"Leaf",
"NavItem",
"ReactSelect",
"Route",
"Table",
"Td",
"Th",
"ThResizer",
"Image"
]
}
],
"react/no-unescaped-entities": ["error", { "forbid": [">", "}"] }],
"jsx-a11y/label-has-associated-control": [
"warn",
{
"depth": 3
}
],
"react-hooks/exhaustive-deps": "error",
"react-hooks/rules-of-hooks": "error",
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"react/no-arrow-function-lifecycle": "off",
"react/no-invalid-html-attribute": "off",
"react/no-unused-class-component-methods": "off",
"react/require-default-props": [0],
"import/no-anonymous-default-export": [
"error",
{
"allowArray": true,
"allowArrowFunction": false,
"allowAnonymousClass": false,
"allowAnonymousFunction": false,
"allowCallExpression": true, // The true value here is for backward compatibility
"allowLiteral": false,
"allowObject": true
}
],
"arrow-body-style": ["off"],
"react/jsx-key": ["error"],
"prettier/prettier": ["warn"],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-misused-promises": [
"error",
{
"checksVoidReturn": {
"attributes": false
}
}
]
}
}