-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
120 lines (120 loc) · 2.59 KB
/
.eslintrc.cjs
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
module.exports = {
"ignorePatterns": ['dist', '.eslintrc.cjs', 'jest.config.ts', 'vite.config.ts', "src/**/*.test.*", "scripts/*"],
"env": {
"browser": true,
"es2021": true,
"jest": true,
"webextensions": true
},
"globals": {
"jsx": true
},
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"standard",
"eslint:recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"react-hooks",
"@typescript-eslint"
],
"rules": {
"consistent-return": 0,
"indent" : [1, 2],
"no-else-return" : 1,
"semi" : [1, "never"],
"space-unary-ops" : 2,
"import/order": [
2,
{
"groups": [
[
"builtin",
"external"
]
],
"newlines-between": "always"
}
],
"no-console": 1,
"no-unused-vars": 2,
"object-curly-spacing": [
2,
"never"
],
"operator-linebreak": [
2,
"after"
],
"react/display-name": 0,
"react/jsx-closing-bracket-location": 2,
"react/jsx-first-prop-new-line": 2,
"react/jsx-no-literals": 0,
"react/jsx-curly-brace-presence": "off",
"react/react-in-jsx-scope":0,
"node/no-callback-literal": "off",
"react/jsx-sort-props": [
2,
{
// https://github.com/yannickcr/eslint-plugin-react/issues/2381
"ignoreCase": true
}
],
"react/jsx-wrap-multilines": [
2,
{
"declaration": "parens-new-line",
"assignment": "parens-new-line",
"return": "parens-new-line",
"arrow": "parens-new-line"
}
],
"react/no-multi-comp": [
2,
{
"ignoreStateless": true
}
],
"react/no-unused-prop-types": 2,
"react/no-unused-state": 2,
"react/sort-prop-types": 2,
"react/sort-comp": [
2,
{
"order": [
"static-methods",
"lifecycle",
"everything-else",
"render"
]
}
],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"import/prefer-default-export": "off",
"import/no-absolute-path":"off"
}
}