-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact.js
More file actions
84 lines (84 loc) · 2.03 KB
/
Copy pathreact.js
File metadata and controls
84 lines (84 loc) · 2.03 KB
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
module.exports = {
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "react-hooks", "sort-destructure-keys"],
"extends": [
"eslint:recommended",
"plugin:ordered-imports/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"settings": {
"jest": {
"version": "detect"
},
"react": {
"version": "detect"
}
},
"rules": {
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-use-before-define": [
2,
{
"classes": false,
"functions": false
}
],
"@typescript-eslint/no-unused-vars": [
2,
{
"ignoreRestSiblings": true
}
],
"@typescript-eslint/ban-ts-comment": [
1,
{
"ts-expect-error": "allow-with-description",
"ts-ignore": "allow-with-description",
"ts-nocheck": "allow-with-description"
}
],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": [
1,
{
"ignoreRestArgs": true
}
],
"@typescript-eslint/prefer-for-of": 2,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/sort-type-union-intersection-members": 2,
"prefer-const": 2,
"no-multiple-empty-lines": 2,
"no-eval": 2,
"no-console": 1,
"no-duplicate-imports": 2,
"eqeqeq": 2,
"one-var": [2, "never"],
"quote-props": 0,
"radix": 2,
"sort-keys": [
1,
"asc",
{ "caseSensitive": true, "natural": true, "minKeys": 2 }
],
"space-before-function-paren": 0,
"react/prop-types": 0,
"react/display-name": 0,
"react/jsx-sort-props": 2,
"require-await": 1,
"prefer-arrow-callback": [
2,
{
"allowNamedFunctions": true
}
],
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 0,
"sort-destructure-keys/sort-destructure-keys": [
2,
{ "caseSensitive": true }
]
}
}