@neurodevs/eslint-config-ndx 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/eslint.config.d.ts +1253 -1
- package/build/eslint.config.js +0 -2
- package/build/eslint.config.js.map +1 -1
- package/package.json +1 -2
- package/src/eslint.config.js +0 -2
package/build/eslint.config.d.ts
CHANGED
|
@@ -1,2 +1,1254 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: (({
|
|
2
|
+
rules: Record<string, 0 | "off">;
|
|
3
|
+
} & {
|
|
4
|
+
name: "config-prettier";
|
|
5
|
+
}) | {
|
|
6
|
+
ignores: string[];
|
|
7
|
+
plugins: {
|
|
8
|
+
import: import("@eslint/core", { with: { "resolution-mode": "require" } }).Plugin & {
|
|
9
|
+
meta: {
|
|
10
|
+
name: string;
|
|
11
|
+
version: string;
|
|
12
|
+
};
|
|
13
|
+
configs: {
|
|
14
|
+
"recommended": import("eslint").Linter.LegacyConfig;
|
|
15
|
+
"errors": import("eslint").Linter.LegacyConfig;
|
|
16
|
+
"warnings": import("eslint").Linter.LegacyConfig;
|
|
17
|
+
"stage-0": import("eslint").Linter.LegacyConfig;
|
|
18
|
+
"react": import("eslint").Linter.LegacyConfig;
|
|
19
|
+
"react-native": import("eslint").Linter.LegacyConfig;
|
|
20
|
+
"electron": import("eslint").Linter.LegacyConfig;
|
|
21
|
+
"typescript": import("eslint").Linter.LegacyConfig;
|
|
22
|
+
};
|
|
23
|
+
flatConfigs: {
|
|
24
|
+
"recommended": import("eslint").Linter.FlatConfig;
|
|
25
|
+
"errors": import("eslint").Linter.FlatConfig;
|
|
26
|
+
"warnings": import("eslint").Linter.FlatConfig;
|
|
27
|
+
"stage-0": import("eslint").Linter.FlatConfig;
|
|
28
|
+
"react": import("eslint").Linter.FlatConfig;
|
|
29
|
+
"react-native": import("eslint").Linter.FlatConfig;
|
|
30
|
+
"electron": import("eslint").Linter.FlatConfig;
|
|
31
|
+
"typescript": import("eslint").Linter.FlatConfig;
|
|
32
|
+
};
|
|
33
|
+
rules: {
|
|
34
|
+
[key: string]: import("eslint").Rule.RuleModule;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
react: {
|
|
38
|
+
deprecatedRules: Partial<{
|
|
39
|
+
'boolean-prop-naming': import("eslint").Rule.RuleModule;
|
|
40
|
+
'button-has-type': import("eslint").Rule.RuleModule;
|
|
41
|
+
'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
|
|
42
|
+
'default-props-match-prop-types': import("eslint").Rule.RuleModule;
|
|
43
|
+
'destructuring-assignment': import("eslint").Rule.RuleModule;
|
|
44
|
+
'display-name': import("eslint").Rule.RuleModule;
|
|
45
|
+
'forbid-component-props': import("eslint").Rule.RuleModule;
|
|
46
|
+
'forbid-dom-props': import("eslint").Rule.RuleModule;
|
|
47
|
+
'forbid-elements': import("eslint").Rule.RuleModule;
|
|
48
|
+
'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
|
|
49
|
+
'forbid-prop-types': import("eslint").Rule.RuleModule;
|
|
50
|
+
'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
|
|
51
|
+
'function-component-definition': import("eslint").Rule.RuleModule;
|
|
52
|
+
'hook-use-state': import("eslint").Rule.RuleModule;
|
|
53
|
+
'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
|
|
54
|
+
'jsx-boolean-value': import("eslint").Rule.RuleModule;
|
|
55
|
+
'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
|
|
56
|
+
'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
|
|
57
|
+
'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
|
|
58
|
+
'jsx-curly-spacing': import("eslint").Rule.RuleModule;
|
|
59
|
+
'jsx-curly-newline': import("eslint").Rule.RuleModule;
|
|
60
|
+
'jsx-equals-spacing': import("eslint").Rule.RuleModule;
|
|
61
|
+
'jsx-filename-extension': import("eslint").Rule.RuleModule;
|
|
62
|
+
'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
|
|
63
|
+
'jsx-handler-names': import("eslint").Rule.RuleModule;
|
|
64
|
+
'jsx-indent': import("eslint").Rule.RuleModule;
|
|
65
|
+
'jsx-indent-props': import("eslint").Rule.RuleModule;
|
|
66
|
+
'jsx-key': import("eslint").Rule.RuleModule;
|
|
67
|
+
'jsx-max-depth': import("eslint").Rule.RuleModule;
|
|
68
|
+
'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
|
|
69
|
+
'jsx-newline': import("eslint").Rule.RuleModule;
|
|
70
|
+
'jsx-no-bind': import("eslint").Rule.RuleModule;
|
|
71
|
+
'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
|
|
72
|
+
'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
|
|
73
|
+
'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
|
|
74
|
+
'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
|
|
75
|
+
'jsx-no-literals': import("eslint").Rule.RuleModule;
|
|
76
|
+
'jsx-no-script-url': import("eslint").Rule.RuleModule;
|
|
77
|
+
'jsx-no-target-blank': import("eslint").Rule.RuleModule;
|
|
78
|
+
'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
|
|
79
|
+
'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
|
|
80
|
+
'jsx-no-undef': import("eslint").Rule.RuleModule;
|
|
81
|
+
'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
|
|
82
|
+
'jsx-pascal-case': import("eslint").Rule.RuleModule;
|
|
83
|
+
'jsx-fragments': import("eslint").Rule.RuleModule;
|
|
84
|
+
'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
|
|
85
|
+
'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
|
|
86
|
+
'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
|
|
87
|
+
'jsx-sort-default-props': import("eslint").Rule.RuleModule;
|
|
88
|
+
'jsx-sort-props': import("eslint").Rule.RuleModule;
|
|
89
|
+
'jsx-space-before-closing': import("eslint").Rule.RuleModule;
|
|
90
|
+
'jsx-tag-spacing': import("eslint").Rule.RuleModule;
|
|
91
|
+
'jsx-uses-react': import("eslint").Rule.RuleModule;
|
|
92
|
+
'jsx-uses-vars': import("eslint").Rule.RuleModule;
|
|
93
|
+
'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
|
|
94
|
+
'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
|
|
95
|
+
'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
|
|
96
|
+
'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
|
|
97
|
+
'no-array-index-key': import("eslint").Rule.RuleModule;
|
|
98
|
+
'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
|
|
99
|
+
'no-children-prop': import("eslint").Rule.RuleModule;
|
|
100
|
+
'no-danger': import("eslint").Rule.RuleModule;
|
|
101
|
+
'no-danger-with-children': import("eslint").Rule.RuleModule;
|
|
102
|
+
'no-deprecated': import("eslint").Rule.RuleModule;
|
|
103
|
+
'no-did-mount-set-state': import("eslint").Rule.RuleModule;
|
|
104
|
+
'no-did-update-set-state': import("eslint").Rule.RuleModule;
|
|
105
|
+
'no-direct-mutation-state': import("eslint").Rule.RuleModule;
|
|
106
|
+
'no-find-dom-node': import("eslint").Rule.RuleModule;
|
|
107
|
+
'no-is-mounted': import("eslint").Rule.RuleModule;
|
|
108
|
+
'no-multi-comp': import("eslint").Rule.RuleModule;
|
|
109
|
+
'no-namespace': import("eslint").Rule.RuleModule;
|
|
110
|
+
'no-set-state': import("eslint").Rule.RuleModule;
|
|
111
|
+
'no-string-refs': import("eslint").Rule.RuleModule;
|
|
112
|
+
'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
|
|
113
|
+
'no-render-return-value': import("eslint").Rule.RuleModule;
|
|
114
|
+
'no-this-in-sfc': import("eslint").Rule.RuleModule;
|
|
115
|
+
'no-typos': import("eslint").Rule.RuleModule;
|
|
116
|
+
'no-unescaped-entities': import("eslint").Rule.RuleModule;
|
|
117
|
+
'no-unknown-property': import("eslint").Rule.RuleModule;
|
|
118
|
+
'no-unsafe': import("eslint").Rule.RuleModule;
|
|
119
|
+
'no-unstable-nested-components': import("eslint").Rule.RuleModule;
|
|
120
|
+
'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
|
|
121
|
+
'no-unused-prop-types': import("eslint").Rule.RuleModule;
|
|
122
|
+
'no-unused-state': import("eslint").Rule.RuleModule;
|
|
123
|
+
'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
|
|
124
|
+
'no-will-update-set-state': import("eslint").Rule.RuleModule;
|
|
125
|
+
'prefer-es6-class': import("eslint").Rule.RuleModule;
|
|
126
|
+
'prefer-exact-props': import("eslint").Rule.RuleModule;
|
|
127
|
+
'prefer-read-only-props': import("eslint").Rule.RuleModule;
|
|
128
|
+
'prefer-stateless-function': import("eslint").Rule.RuleModule;
|
|
129
|
+
'prop-types': import("eslint").Rule.RuleModule;
|
|
130
|
+
'react-in-jsx-scope': import("eslint").Rule.RuleModule;
|
|
131
|
+
'require-default-props': import("eslint").Rule.RuleModule;
|
|
132
|
+
'require-optimization': import("eslint").Rule.RuleModule;
|
|
133
|
+
'require-render-return': import("eslint").Rule.RuleModule;
|
|
134
|
+
'self-closing-comp': import("eslint").Rule.RuleModule;
|
|
135
|
+
'sort-comp': import("eslint").Rule.RuleModule;
|
|
136
|
+
'sort-default-props': import("eslint").Rule.RuleModule;
|
|
137
|
+
'sort-prop-types': import("eslint").Rule.RuleModule;
|
|
138
|
+
'state-in-constructor': import("eslint").Rule.RuleModule;
|
|
139
|
+
'static-property-placement': import("eslint").Rule.RuleModule;
|
|
140
|
+
'style-prop-object': import("eslint").Rule.RuleModule;
|
|
141
|
+
'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
|
|
142
|
+
}>;
|
|
143
|
+
rules: {
|
|
144
|
+
'boolean-prop-naming': import("eslint").Rule.RuleModule;
|
|
145
|
+
'button-has-type': import("eslint").Rule.RuleModule;
|
|
146
|
+
'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
|
|
147
|
+
'default-props-match-prop-types': import("eslint").Rule.RuleModule;
|
|
148
|
+
'destructuring-assignment': import("eslint").Rule.RuleModule;
|
|
149
|
+
'display-name': import("eslint").Rule.RuleModule;
|
|
150
|
+
'forbid-component-props': import("eslint").Rule.RuleModule;
|
|
151
|
+
'forbid-dom-props': import("eslint").Rule.RuleModule;
|
|
152
|
+
'forbid-elements': import("eslint").Rule.RuleModule;
|
|
153
|
+
'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
|
|
154
|
+
'forbid-prop-types': import("eslint").Rule.RuleModule;
|
|
155
|
+
'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
|
|
156
|
+
'function-component-definition': import("eslint").Rule.RuleModule;
|
|
157
|
+
'hook-use-state': import("eslint").Rule.RuleModule;
|
|
158
|
+
'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
|
|
159
|
+
'jsx-boolean-value': import("eslint").Rule.RuleModule;
|
|
160
|
+
'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
|
|
161
|
+
'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
|
|
162
|
+
'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
|
|
163
|
+
'jsx-curly-spacing': import("eslint").Rule.RuleModule;
|
|
164
|
+
'jsx-curly-newline': import("eslint").Rule.RuleModule;
|
|
165
|
+
'jsx-equals-spacing': import("eslint").Rule.RuleModule;
|
|
166
|
+
'jsx-filename-extension': import("eslint").Rule.RuleModule;
|
|
167
|
+
'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
|
|
168
|
+
'jsx-handler-names': import("eslint").Rule.RuleModule;
|
|
169
|
+
'jsx-indent': import("eslint").Rule.RuleModule;
|
|
170
|
+
'jsx-indent-props': import("eslint").Rule.RuleModule;
|
|
171
|
+
'jsx-key': import("eslint").Rule.RuleModule;
|
|
172
|
+
'jsx-max-depth': import("eslint").Rule.RuleModule;
|
|
173
|
+
'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
|
|
174
|
+
'jsx-newline': import("eslint").Rule.RuleModule;
|
|
175
|
+
'jsx-no-bind': import("eslint").Rule.RuleModule;
|
|
176
|
+
'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
|
|
177
|
+
'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
|
|
178
|
+
'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
|
|
179
|
+
'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
|
|
180
|
+
'jsx-no-literals': import("eslint").Rule.RuleModule;
|
|
181
|
+
'jsx-no-script-url': import("eslint").Rule.RuleModule;
|
|
182
|
+
'jsx-no-target-blank': import("eslint").Rule.RuleModule;
|
|
183
|
+
'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
|
|
184
|
+
'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
|
|
185
|
+
'jsx-no-undef': import("eslint").Rule.RuleModule;
|
|
186
|
+
'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
|
|
187
|
+
'jsx-pascal-case': import("eslint").Rule.RuleModule;
|
|
188
|
+
'jsx-fragments': import("eslint").Rule.RuleModule;
|
|
189
|
+
'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
|
|
190
|
+
'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
|
|
191
|
+
'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
|
|
192
|
+
'jsx-sort-default-props': import("eslint").Rule.RuleModule;
|
|
193
|
+
'jsx-sort-props': import("eslint").Rule.RuleModule;
|
|
194
|
+
'jsx-space-before-closing': import("eslint").Rule.RuleModule;
|
|
195
|
+
'jsx-tag-spacing': import("eslint").Rule.RuleModule;
|
|
196
|
+
'jsx-uses-react': import("eslint").Rule.RuleModule;
|
|
197
|
+
'jsx-uses-vars': import("eslint").Rule.RuleModule;
|
|
198
|
+
'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
|
|
199
|
+
'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
|
|
200
|
+
'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
|
|
201
|
+
'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
|
|
202
|
+
'no-array-index-key': import("eslint").Rule.RuleModule;
|
|
203
|
+
'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
|
|
204
|
+
'no-children-prop': import("eslint").Rule.RuleModule;
|
|
205
|
+
'no-danger': import("eslint").Rule.RuleModule;
|
|
206
|
+
'no-danger-with-children': import("eslint").Rule.RuleModule;
|
|
207
|
+
'no-deprecated': import("eslint").Rule.RuleModule;
|
|
208
|
+
'no-did-mount-set-state': import("eslint").Rule.RuleModule;
|
|
209
|
+
'no-did-update-set-state': import("eslint").Rule.RuleModule;
|
|
210
|
+
'no-direct-mutation-state': import("eslint").Rule.RuleModule;
|
|
211
|
+
'no-find-dom-node': import("eslint").Rule.RuleModule;
|
|
212
|
+
'no-is-mounted': import("eslint").Rule.RuleModule;
|
|
213
|
+
'no-multi-comp': import("eslint").Rule.RuleModule;
|
|
214
|
+
'no-namespace': import("eslint").Rule.RuleModule;
|
|
215
|
+
'no-set-state': import("eslint").Rule.RuleModule;
|
|
216
|
+
'no-string-refs': import("eslint").Rule.RuleModule;
|
|
217
|
+
'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
|
|
218
|
+
'no-render-return-value': import("eslint").Rule.RuleModule;
|
|
219
|
+
'no-this-in-sfc': import("eslint").Rule.RuleModule;
|
|
220
|
+
'no-typos': import("eslint").Rule.RuleModule;
|
|
221
|
+
'no-unescaped-entities': import("eslint").Rule.RuleModule;
|
|
222
|
+
'no-unknown-property': import("eslint").Rule.RuleModule;
|
|
223
|
+
'no-unsafe': import("eslint").Rule.RuleModule;
|
|
224
|
+
'no-unstable-nested-components': import("eslint").Rule.RuleModule;
|
|
225
|
+
'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
|
|
226
|
+
'no-unused-prop-types': import("eslint").Rule.RuleModule;
|
|
227
|
+
'no-unused-state': import("eslint").Rule.RuleModule;
|
|
228
|
+
'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
|
|
229
|
+
'no-will-update-set-state': import("eslint").Rule.RuleModule;
|
|
230
|
+
'prefer-es6-class': import("eslint").Rule.RuleModule;
|
|
231
|
+
'prefer-exact-props': import("eslint").Rule.RuleModule;
|
|
232
|
+
'prefer-read-only-props': import("eslint").Rule.RuleModule;
|
|
233
|
+
'prefer-stateless-function': import("eslint").Rule.RuleModule;
|
|
234
|
+
'prop-types': import("eslint").Rule.RuleModule;
|
|
235
|
+
'react-in-jsx-scope': import("eslint").Rule.RuleModule;
|
|
236
|
+
'require-default-props': import("eslint").Rule.RuleModule;
|
|
237
|
+
'require-optimization': import("eslint").Rule.RuleModule;
|
|
238
|
+
'require-render-return': import("eslint").Rule.RuleModule;
|
|
239
|
+
'self-closing-comp': import("eslint").Rule.RuleModule;
|
|
240
|
+
'sort-comp': import("eslint").Rule.RuleModule;
|
|
241
|
+
'sort-default-props': import("eslint").Rule.RuleModule;
|
|
242
|
+
'sort-prop-types': import("eslint").Rule.RuleModule;
|
|
243
|
+
'state-in-constructor': import("eslint").Rule.RuleModule;
|
|
244
|
+
'static-property-placement': import("eslint").Rule.RuleModule;
|
|
245
|
+
'style-prop-object': import("eslint").Rule.RuleModule;
|
|
246
|
+
'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
|
|
247
|
+
};
|
|
248
|
+
configs: {
|
|
249
|
+
recommended: {
|
|
250
|
+
plugins: ["react"];
|
|
251
|
+
parserOptions: {
|
|
252
|
+
ecmaFeatures: {
|
|
253
|
+
jsx: boolean;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
rules: {
|
|
257
|
+
"react/display-name": 2;
|
|
258
|
+
"react/jsx-key": 2;
|
|
259
|
+
"react/jsx-no-comment-textnodes": 2;
|
|
260
|
+
"react/jsx-no-duplicate-props": 2;
|
|
261
|
+
"react/jsx-no-target-blank": 2;
|
|
262
|
+
"react/jsx-no-undef": 2;
|
|
263
|
+
"react/jsx-uses-react": 2;
|
|
264
|
+
"react/jsx-uses-vars": 2;
|
|
265
|
+
"react/no-children-prop": 2;
|
|
266
|
+
"react/no-danger-with-children": 2;
|
|
267
|
+
"react/no-deprecated": 2;
|
|
268
|
+
"react/no-direct-mutation-state": 2;
|
|
269
|
+
"react/no-find-dom-node": 2;
|
|
270
|
+
"react/no-is-mounted": 2;
|
|
271
|
+
"react/no-render-return-value": 2;
|
|
272
|
+
"react/no-string-refs": 2;
|
|
273
|
+
"react/no-unescaped-entities": 2;
|
|
274
|
+
"react/no-unknown-property": 2;
|
|
275
|
+
"react/no-unsafe": 0;
|
|
276
|
+
"react/prop-types": 2;
|
|
277
|
+
"react/react-in-jsx-scope": 2;
|
|
278
|
+
"react/require-render-return": 2;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
all: {
|
|
282
|
+
plugins: ["react"];
|
|
283
|
+
parserOptions: {
|
|
284
|
+
ecmaFeatures: {
|
|
285
|
+
jsx: boolean;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
rules: Record<"boolean-prop-naming" | "button-has-type" | "checked-requires-onchange-or-readonly" | "default-props-match-prop-types" | "destructuring-assignment" | "display-name" | "forbid-component-props" | "forbid-dom-props" | "forbid-elements" | "forbid-foreign-prop-types" | "forbid-prop-types" | "prop-types" | "forward-ref-uses-ref" | "function-component-definition" | "hook-use-state" | "iframe-missing-sandbox" | "jsx-boolean-value" | "jsx-child-element-spacing" | "jsx-closing-bracket-location" | "jsx-closing-tag-location" | "jsx-curly-spacing" | "jsx-curly-newline" | "jsx-equals-spacing" | "jsx-filename-extension" | "jsx-first-prop-new-line" | "jsx-handler-names" | "jsx-indent" | "jsx-indent-props" | "jsx-key" | "jsx-max-depth" | "jsx-max-props-per-line" | "jsx-newline" | "jsx-no-bind" | "jsx-no-comment-textnodes" | "jsx-no-constructed-context-values" | "jsx-no-duplicate-props" | "jsx-no-leaked-render" | "jsx-no-literals" | "jsx-no-script-url" | "jsx-no-target-blank" | "jsx-no-useless-fragment" | "jsx-one-expression-per-line" | "jsx-no-undef" | "jsx-curly-brace-presence" | "jsx-pascal-case" | "jsx-fragments" | "jsx-props-no-multi-spaces" | "jsx-props-no-spreading" | "jsx-props-no-spread-multi" | "sort-default-props" | "jsx-sort-default-props" | "jsx-sort-props" | "jsx-tag-spacing" | "jsx-space-before-closing" | "jsx-uses-react" | "jsx-uses-vars" | "jsx-wrap-multilines" | "no-invalid-html-attribute" | "no-access-state-in-setstate" | "no-adjacent-inline-elements" | "no-array-index-key" | "no-arrow-function-lifecycle" | "no-children-prop" | "no-danger" | "no-danger-with-children" | "no-deprecated" | "no-direct-mutation-state" | "no-find-dom-node" | "no-is-mounted" | "no-multi-comp" | "no-namespace" | "no-set-state" | "no-string-refs" | "no-redundant-should-component-update" | "no-render-return-value" | "no-this-in-sfc" | "no-typos" | "no-unescaped-entities" | "no-unknown-property" | "no-unsafe" | "no-unstable-nested-components" | "no-unused-class-component-methods" | "no-unused-prop-types" | "no-unused-state" | "no-object-type-as-default-prop" | "prefer-es6-class" | "prefer-exact-props" | "prefer-read-only-props" | "prefer-stateless-function" | "react-in-jsx-scope" | "require-default-props" | "require-optimization" | "require-render-return" | "self-closing-comp" | "sort-comp" | "sort-prop-types" | "state-in-constructor" | "static-property-placement" | "style-prop-object" | "void-dom-elements-no-children" | "no-did-mount-set-state" | "no-did-update-set-state" | "no-will-update-set-state", 2 | "error">;
|
|
289
|
+
};
|
|
290
|
+
'jsx-runtime': {
|
|
291
|
+
plugins: ["react"];
|
|
292
|
+
parserOptions: {
|
|
293
|
+
ecmaFeatures: {
|
|
294
|
+
jsx: boolean;
|
|
295
|
+
};
|
|
296
|
+
jsxPragma: any;
|
|
297
|
+
};
|
|
298
|
+
rules: {
|
|
299
|
+
"react/react-in-jsx-scope": 0;
|
|
300
|
+
"react/jsx-uses-react": 0;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
flat: Record<string, esReact.ReactFlatConfig>;
|
|
304
|
+
} & {
|
|
305
|
+
flat: Record<string, esReact.ReactFlatConfig>;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
'@typescript-eslint'?: undefined;
|
|
309
|
+
};
|
|
310
|
+
languageOptions: {
|
|
311
|
+
ecmaVersion: string;
|
|
312
|
+
sourceType: string;
|
|
313
|
+
globals: {
|
|
314
|
+
afterAll: false;
|
|
315
|
+
afterEach: false;
|
|
316
|
+
beforeAll: false;
|
|
317
|
+
beforeEach: false;
|
|
318
|
+
describe: false;
|
|
319
|
+
expect: false;
|
|
320
|
+
fdescribe: false;
|
|
321
|
+
fit: false;
|
|
322
|
+
it: false;
|
|
323
|
+
jest: false;
|
|
324
|
+
pit: false;
|
|
325
|
+
require: false;
|
|
326
|
+
test: false;
|
|
327
|
+
xdescribe: false;
|
|
328
|
+
xit: false;
|
|
329
|
+
xtest: false;
|
|
330
|
+
__dirname: false;
|
|
331
|
+
__filename: false;
|
|
332
|
+
AbortController: false;
|
|
333
|
+
AbortSignal: false;
|
|
334
|
+
atob: false;
|
|
335
|
+
Blob: false;
|
|
336
|
+
BroadcastChannel: false;
|
|
337
|
+
btoa: false;
|
|
338
|
+
Buffer: false;
|
|
339
|
+
ByteLengthQueuingStrategy: false;
|
|
340
|
+
clearImmediate: false;
|
|
341
|
+
clearInterval: false;
|
|
342
|
+
clearTimeout: false;
|
|
343
|
+
CompressionStream: false;
|
|
344
|
+
console: false;
|
|
345
|
+
CountQueuingStrategy: false;
|
|
346
|
+
crypto: false;
|
|
347
|
+
Crypto: false;
|
|
348
|
+
CryptoKey: false;
|
|
349
|
+
CustomEvent: false;
|
|
350
|
+
DecompressionStream: false;
|
|
351
|
+
DOMException: false;
|
|
352
|
+
Event: false;
|
|
353
|
+
EventTarget: false;
|
|
354
|
+
exports: true;
|
|
355
|
+
fetch: false;
|
|
356
|
+
File: false;
|
|
357
|
+
FormData: false;
|
|
358
|
+
global: false;
|
|
359
|
+
Headers: false;
|
|
360
|
+
Intl: false;
|
|
361
|
+
MessageChannel: false;
|
|
362
|
+
MessageEvent: false;
|
|
363
|
+
MessagePort: false;
|
|
364
|
+
module: false;
|
|
365
|
+
performance: false;
|
|
366
|
+
PerformanceEntry: false;
|
|
367
|
+
PerformanceMark: false;
|
|
368
|
+
PerformanceMeasure: false;
|
|
369
|
+
PerformanceObserver: false;
|
|
370
|
+
PerformanceObserverEntryList: false;
|
|
371
|
+
PerformanceResourceTiming: false;
|
|
372
|
+
process: false;
|
|
373
|
+
queueMicrotask: false;
|
|
374
|
+
ReadableByteStreamController: false;
|
|
375
|
+
ReadableStream: false;
|
|
376
|
+
ReadableStreamBYOBReader: false;
|
|
377
|
+
ReadableStreamBYOBRequest: false;
|
|
378
|
+
ReadableStreamDefaultController: false;
|
|
379
|
+
ReadableStreamDefaultReader: false;
|
|
380
|
+
Request: false;
|
|
381
|
+
Response: false;
|
|
382
|
+
setImmediate: false;
|
|
383
|
+
setInterval: false;
|
|
384
|
+
setTimeout: false;
|
|
385
|
+
structuredClone: false;
|
|
386
|
+
SubtleCrypto: false;
|
|
387
|
+
TextDecoder: false;
|
|
388
|
+
TextDecoderStream: false;
|
|
389
|
+
TextEncoder: false;
|
|
390
|
+
TextEncoderStream: false;
|
|
391
|
+
TransformStream: false;
|
|
392
|
+
TransformStreamDefaultController: false;
|
|
393
|
+
URL: false;
|
|
394
|
+
URLSearchParams: false;
|
|
395
|
+
WebAssembly: false;
|
|
396
|
+
WritableStream: false;
|
|
397
|
+
WritableStreamDefaultController: false;
|
|
398
|
+
WritableStreamDefaultWriter: false;
|
|
399
|
+
addEventListener: false;
|
|
400
|
+
alert: false;
|
|
401
|
+
AnalyserNode: false;
|
|
402
|
+
Animation: false;
|
|
403
|
+
AnimationEffectReadOnly: false;
|
|
404
|
+
AnimationEffectTiming: false;
|
|
405
|
+
AnimationEffectTimingReadOnly: false;
|
|
406
|
+
AnimationEvent: false;
|
|
407
|
+
AnimationPlaybackEvent: false;
|
|
408
|
+
AnimationTimeline: false;
|
|
409
|
+
applicationCache: false;
|
|
410
|
+
ApplicationCache: false;
|
|
411
|
+
ApplicationCacheErrorEvent: false;
|
|
412
|
+
Attr: false;
|
|
413
|
+
Audio: false;
|
|
414
|
+
AudioBuffer: false;
|
|
415
|
+
AudioBufferSourceNode: false;
|
|
416
|
+
AudioContext: false;
|
|
417
|
+
AudioDestinationNode: false;
|
|
418
|
+
AudioListener: false;
|
|
419
|
+
AudioNode: false;
|
|
420
|
+
AudioParam: false;
|
|
421
|
+
AudioProcessingEvent: false;
|
|
422
|
+
AudioScheduledSourceNode: false;
|
|
423
|
+
AudioWorkletGlobalScope: false;
|
|
424
|
+
AudioWorkletNode: false;
|
|
425
|
+
AudioWorkletProcessor: false;
|
|
426
|
+
BarProp: false;
|
|
427
|
+
BaseAudioContext: false;
|
|
428
|
+
BatteryManager: false;
|
|
429
|
+
BeforeUnloadEvent: false;
|
|
430
|
+
BiquadFilterNode: false;
|
|
431
|
+
BlobEvent: false;
|
|
432
|
+
blur: false;
|
|
433
|
+
BudgetService: false;
|
|
434
|
+
Cache: false;
|
|
435
|
+
caches: false;
|
|
436
|
+
CacheStorage: false;
|
|
437
|
+
cancelAnimationFrame: false;
|
|
438
|
+
cancelIdleCallback: false;
|
|
439
|
+
CanvasCaptureMediaStreamTrack: false;
|
|
440
|
+
CanvasGradient: false;
|
|
441
|
+
CanvasPattern: false;
|
|
442
|
+
CanvasRenderingContext2D: false;
|
|
443
|
+
ChannelMergerNode: false;
|
|
444
|
+
ChannelSplitterNode: false;
|
|
445
|
+
CharacterData: false;
|
|
446
|
+
clientInformation: false;
|
|
447
|
+
ClipboardEvent: false;
|
|
448
|
+
ClipboardItem: false;
|
|
449
|
+
close: false;
|
|
450
|
+
closed: false;
|
|
451
|
+
CloseEvent: false;
|
|
452
|
+
Comment: false;
|
|
453
|
+
CompositionEvent: false;
|
|
454
|
+
confirm: false;
|
|
455
|
+
ConstantSourceNode: false;
|
|
456
|
+
ConvolverNode: false;
|
|
457
|
+
createImageBitmap: false;
|
|
458
|
+
Credential: false;
|
|
459
|
+
CredentialsContainer: false;
|
|
460
|
+
CSS: false;
|
|
461
|
+
CSSConditionRule: false;
|
|
462
|
+
CSSFontFaceRule: false;
|
|
463
|
+
CSSGroupingRule: false;
|
|
464
|
+
CSSImportRule: false;
|
|
465
|
+
CSSKeyframeRule: false;
|
|
466
|
+
CSSKeyframesRule: false;
|
|
467
|
+
CSSMatrixComponent: false;
|
|
468
|
+
CSSMediaRule: false;
|
|
469
|
+
CSSNamespaceRule: false;
|
|
470
|
+
CSSPageRule: false;
|
|
471
|
+
CSSPerspective: false;
|
|
472
|
+
CSSRotate: false;
|
|
473
|
+
CSSRule: false;
|
|
474
|
+
CSSRuleList: false;
|
|
475
|
+
CSSScale: false;
|
|
476
|
+
CSSSkew: false;
|
|
477
|
+
CSSSkewX: false;
|
|
478
|
+
CSSSkewY: false;
|
|
479
|
+
CSSStyleDeclaration: false;
|
|
480
|
+
CSSStyleRule: false;
|
|
481
|
+
CSSStyleSheet: false;
|
|
482
|
+
CSSSupportsRule: false;
|
|
483
|
+
CSSTransformValue: false;
|
|
484
|
+
CSSTranslate: false;
|
|
485
|
+
CustomElementRegistry: false;
|
|
486
|
+
customElements: false;
|
|
487
|
+
DataTransfer: false;
|
|
488
|
+
DataTransferItem: false;
|
|
489
|
+
DataTransferItemList: false;
|
|
490
|
+
defaultstatus: false;
|
|
491
|
+
defaultStatus: false;
|
|
492
|
+
DelayNode: false;
|
|
493
|
+
DeviceMotionEvent: false;
|
|
494
|
+
DeviceOrientationEvent: false;
|
|
495
|
+
devicePixelRatio: false;
|
|
496
|
+
dispatchEvent: false;
|
|
497
|
+
document: false;
|
|
498
|
+
Document: false;
|
|
499
|
+
DocumentFragment: false;
|
|
500
|
+
DocumentType: false;
|
|
501
|
+
DOMError: false;
|
|
502
|
+
DOMImplementation: false;
|
|
503
|
+
DOMMatrix: false;
|
|
504
|
+
DOMMatrixReadOnly: false;
|
|
505
|
+
DOMParser: false;
|
|
506
|
+
DOMPoint: false;
|
|
507
|
+
DOMPointReadOnly: false;
|
|
508
|
+
DOMQuad: false;
|
|
509
|
+
DOMRect: false;
|
|
510
|
+
DOMRectList: false;
|
|
511
|
+
DOMRectReadOnly: false;
|
|
512
|
+
DOMStringList: false;
|
|
513
|
+
DOMStringMap: false;
|
|
514
|
+
DOMTokenList: false;
|
|
515
|
+
DragEvent: false;
|
|
516
|
+
DynamicsCompressorNode: false;
|
|
517
|
+
Element: false;
|
|
518
|
+
ErrorEvent: false;
|
|
519
|
+
event: false;
|
|
520
|
+
EventSource: false;
|
|
521
|
+
external: false;
|
|
522
|
+
FileList: false;
|
|
523
|
+
FileReader: false;
|
|
524
|
+
find: false;
|
|
525
|
+
focus: false;
|
|
526
|
+
FocusEvent: false;
|
|
527
|
+
FontFace: false;
|
|
528
|
+
FontFaceSetLoadEvent: false;
|
|
529
|
+
FormDataEvent: false;
|
|
530
|
+
frameElement: false;
|
|
531
|
+
frames: false;
|
|
532
|
+
GainNode: false;
|
|
533
|
+
Gamepad: false;
|
|
534
|
+
GamepadButton: false;
|
|
535
|
+
GamepadEvent: false;
|
|
536
|
+
getComputedStyle: false;
|
|
537
|
+
getSelection: false;
|
|
538
|
+
HashChangeEvent: false;
|
|
539
|
+
history: false;
|
|
540
|
+
History: false;
|
|
541
|
+
HTMLAllCollection: false;
|
|
542
|
+
HTMLAnchorElement: false;
|
|
543
|
+
HTMLAreaElement: false;
|
|
544
|
+
HTMLAudioElement: false;
|
|
545
|
+
HTMLBaseElement: false;
|
|
546
|
+
HTMLBodyElement: false;
|
|
547
|
+
HTMLBRElement: false;
|
|
548
|
+
HTMLButtonElement: false;
|
|
549
|
+
HTMLCanvasElement: false;
|
|
550
|
+
HTMLCollection: false;
|
|
551
|
+
HTMLContentElement: false;
|
|
552
|
+
HTMLDataElement: false;
|
|
553
|
+
HTMLDataListElement: false;
|
|
554
|
+
HTMLDetailsElement: false;
|
|
555
|
+
HTMLDialogElement: false;
|
|
556
|
+
HTMLDirectoryElement: false;
|
|
557
|
+
HTMLDivElement: false;
|
|
558
|
+
HTMLDListElement: false;
|
|
559
|
+
HTMLDocument: false;
|
|
560
|
+
HTMLElement: false;
|
|
561
|
+
HTMLEmbedElement: false;
|
|
562
|
+
HTMLFieldSetElement: false;
|
|
563
|
+
HTMLFontElement: false;
|
|
564
|
+
HTMLFormControlsCollection: false;
|
|
565
|
+
HTMLFormElement: false;
|
|
566
|
+
HTMLFrameElement: false;
|
|
567
|
+
HTMLFrameSetElement: false;
|
|
568
|
+
HTMLHeadElement: false;
|
|
569
|
+
HTMLHeadingElement: false;
|
|
570
|
+
HTMLHRElement: false;
|
|
571
|
+
HTMLHtmlElement: false;
|
|
572
|
+
HTMLIFrameElement: false;
|
|
573
|
+
HTMLImageElement: false;
|
|
574
|
+
HTMLInputElement: false;
|
|
575
|
+
HTMLLabelElement: false;
|
|
576
|
+
HTMLLegendElement: false;
|
|
577
|
+
HTMLLIElement: false;
|
|
578
|
+
HTMLLinkElement: false;
|
|
579
|
+
HTMLMapElement: false;
|
|
580
|
+
HTMLMarqueeElement: false;
|
|
581
|
+
HTMLMediaElement: false;
|
|
582
|
+
HTMLMenuElement: false;
|
|
583
|
+
HTMLMetaElement: false;
|
|
584
|
+
HTMLMeterElement: false;
|
|
585
|
+
HTMLModElement: false;
|
|
586
|
+
HTMLObjectElement: false;
|
|
587
|
+
HTMLOListElement: false;
|
|
588
|
+
HTMLOptGroupElement: false;
|
|
589
|
+
HTMLOptionElement: false;
|
|
590
|
+
HTMLOptionsCollection: false;
|
|
591
|
+
HTMLOutputElement: false;
|
|
592
|
+
HTMLParagraphElement: false;
|
|
593
|
+
HTMLParamElement: false;
|
|
594
|
+
HTMLPictureElement: false;
|
|
595
|
+
HTMLPreElement: false;
|
|
596
|
+
HTMLProgressElement: false;
|
|
597
|
+
HTMLQuoteElement: false;
|
|
598
|
+
HTMLScriptElement: false;
|
|
599
|
+
HTMLSelectElement: false;
|
|
600
|
+
HTMLShadowElement: false;
|
|
601
|
+
HTMLSlotElement: false;
|
|
602
|
+
HTMLSourceElement: false;
|
|
603
|
+
HTMLSpanElement: false;
|
|
604
|
+
HTMLStyleElement: false;
|
|
605
|
+
HTMLTableCaptionElement: false;
|
|
606
|
+
HTMLTableCellElement: false;
|
|
607
|
+
HTMLTableColElement: false;
|
|
608
|
+
HTMLTableElement: false;
|
|
609
|
+
HTMLTableRowElement: false;
|
|
610
|
+
HTMLTableSectionElement: false;
|
|
611
|
+
HTMLTemplateElement: false;
|
|
612
|
+
HTMLTextAreaElement: false;
|
|
613
|
+
HTMLTimeElement: false;
|
|
614
|
+
HTMLTitleElement: false;
|
|
615
|
+
HTMLTrackElement: false;
|
|
616
|
+
HTMLUListElement: false;
|
|
617
|
+
HTMLUnknownElement: false;
|
|
618
|
+
HTMLVideoElement: false;
|
|
619
|
+
IDBCursor: false;
|
|
620
|
+
IDBCursorWithValue: false;
|
|
621
|
+
IDBDatabase: false;
|
|
622
|
+
IDBFactory: false;
|
|
623
|
+
IDBIndex: false;
|
|
624
|
+
IDBKeyRange: false;
|
|
625
|
+
IDBObjectStore: false;
|
|
626
|
+
IDBOpenDBRequest: false;
|
|
627
|
+
IDBRequest: false;
|
|
628
|
+
IDBTransaction: false;
|
|
629
|
+
IDBVersionChangeEvent: false;
|
|
630
|
+
IdleDeadline: false;
|
|
631
|
+
IIRFilterNode: false;
|
|
632
|
+
Image: false;
|
|
633
|
+
ImageBitmap: false;
|
|
634
|
+
ImageBitmapRenderingContext: false;
|
|
635
|
+
ImageCapture: false;
|
|
636
|
+
ImageData: false;
|
|
637
|
+
indexedDB: false;
|
|
638
|
+
innerHeight: false;
|
|
639
|
+
innerWidth: false;
|
|
640
|
+
InputEvent: false;
|
|
641
|
+
IntersectionObserver: false;
|
|
642
|
+
IntersectionObserverEntry: false;
|
|
643
|
+
isSecureContext: false;
|
|
644
|
+
KeyboardEvent: false;
|
|
645
|
+
KeyframeEffect: false;
|
|
646
|
+
KeyframeEffectReadOnly: false;
|
|
647
|
+
length: false;
|
|
648
|
+
localStorage: false;
|
|
649
|
+
location: true;
|
|
650
|
+
Location: false;
|
|
651
|
+
locationbar: false;
|
|
652
|
+
matchMedia: false;
|
|
653
|
+
MediaDeviceInfo: false;
|
|
654
|
+
MediaDevices: false;
|
|
655
|
+
MediaElementAudioSourceNode: false;
|
|
656
|
+
MediaEncryptedEvent: false;
|
|
657
|
+
MediaError: false;
|
|
658
|
+
MediaKeyMessageEvent: false;
|
|
659
|
+
MediaKeySession: false;
|
|
660
|
+
MediaKeyStatusMap: false;
|
|
661
|
+
MediaKeySystemAccess: false;
|
|
662
|
+
MediaList: false;
|
|
663
|
+
MediaMetadata: false;
|
|
664
|
+
MediaQueryList: false;
|
|
665
|
+
MediaQueryListEvent: false;
|
|
666
|
+
MediaRecorder: false;
|
|
667
|
+
MediaSettingsRange: false;
|
|
668
|
+
MediaSource: false;
|
|
669
|
+
MediaStream: false;
|
|
670
|
+
MediaStreamAudioDestinationNode: false;
|
|
671
|
+
MediaStreamAudioSourceNode: false;
|
|
672
|
+
MediaStreamConstraints: false;
|
|
673
|
+
MediaStreamEvent: false;
|
|
674
|
+
MediaStreamTrack: false;
|
|
675
|
+
MediaStreamTrackEvent: false;
|
|
676
|
+
menubar: false;
|
|
677
|
+
MIDIAccess: false;
|
|
678
|
+
MIDIConnectionEvent: false;
|
|
679
|
+
MIDIInput: false;
|
|
680
|
+
MIDIInputMap: false;
|
|
681
|
+
MIDIMessageEvent: false;
|
|
682
|
+
MIDIOutput: false;
|
|
683
|
+
MIDIOutputMap: false;
|
|
684
|
+
MIDIPort: false;
|
|
685
|
+
MimeType: false;
|
|
686
|
+
MimeTypeArray: false;
|
|
687
|
+
MouseEvent: false;
|
|
688
|
+
moveBy: false;
|
|
689
|
+
moveTo: false;
|
|
690
|
+
MutationEvent: false;
|
|
691
|
+
MutationObserver: false;
|
|
692
|
+
MutationRecord: false;
|
|
693
|
+
name: false;
|
|
694
|
+
NamedNodeMap: false;
|
|
695
|
+
NavigationPreloadManager: false;
|
|
696
|
+
navigator: false;
|
|
697
|
+
Navigator: false;
|
|
698
|
+
NavigatorUAData: false;
|
|
699
|
+
NetworkInformation: false;
|
|
700
|
+
Node: false;
|
|
701
|
+
NodeFilter: false;
|
|
702
|
+
NodeIterator: false;
|
|
703
|
+
NodeList: false;
|
|
704
|
+
Notification: false;
|
|
705
|
+
OfflineAudioCompletionEvent: false;
|
|
706
|
+
OfflineAudioContext: false;
|
|
707
|
+
offscreenBuffering: false;
|
|
708
|
+
OffscreenCanvas: true;
|
|
709
|
+
OffscreenCanvasRenderingContext2D: false;
|
|
710
|
+
onabort: true;
|
|
711
|
+
onafterprint: true;
|
|
712
|
+
onanimationend: true;
|
|
713
|
+
onanimationiteration: true;
|
|
714
|
+
onanimationstart: true;
|
|
715
|
+
onappinstalled: true;
|
|
716
|
+
onauxclick: true;
|
|
717
|
+
onbeforeinstallprompt: true;
|
|
718
|
+
onbeforeprint: true;
|
|
719
|
+
onbeforeunload: true;
|
|
720
|
+
onblur: true;
|
|
721
|
+
oncancel: true;
|
|
722
|
+
oncanplay: true;
|
|
723
|
+
oncanplaythrough: true;
|
|
724
|
+
onchange: true;
|
|
725
|
+
onclick: true;
|
|
726
|
+
onclose: true;
|
|
727
|
+
oncontextmenu: true;
|
|
728
|
+
oncuechange: true;
|
|
729
|
+
ondblclick: true;
|
|
730
|
+
ondevicemotion: true;
|
|
731
|
+
ondeviceorientation: true;
|
|
732
|
+
ondeviceorientationabsolute: true;
|
|
733
|
+
ondrag: true;
|
|
734
|
+
ondragend: true;
|
|
735
|
+
ondragenter: true;
|
|
736
|
+
ondragleave: true;
|
|
737
|
+
ondragover: true;
|
|
738
|
+
ondragstart: true;
|
|
739
|
+
ondrop: true;
|
|
740
|
+
ondurationchange: true;
|
|
741
|
+
onemptied: true;
|
|
742
|
+
onended: true;
|
|
743
|
+
onerror: true;
|
|
744
|
+
onfocus: true;
|
|
745
|
+
ongotpointercapture: true;
|
|
746
|
+
onhashchange: true;
|
|
747
|
+
oninput: true;
|
|
748
|
+
oninvalid: true;
|
|
749
|
+
onkeydown: true;
|
|
750
|
+
onkeypress: true;
|
|
751
|
+
onkeyup: true;
|
|
752
|
+
onlanguagechange: true;
|
|
753
|
+
onload: true;
|
|
754
|
+
onloadeddata: true;
|
|
755
|
+
onloadedmetadata: true;
|
|
756
|
+
onloadstart: true;
|
|
757
|
+
onlostpointercapture: true;
|
|
758
|
+
onmessage: true;
|
|
759
|
+
onmessageerror: true;
|
|
760
|
+
onmousedown: true;
|
|
761
|
+
onmouseenter: true;
|
|
762
|
+
onmouseleave: true;
|
|
763
|
+
onmousemove: true;
|
|
764
|
+
onmouseout: true;
|
|
765
|
+
onmouseover: true;
|
|
766
|
+
onmouseup: true;
|
|
767
|
+
onmousewheel: true;
|
|
768
|
+
onoffline: true;
|
|
769
|
+
ononline: true;
|
|
770
|
+
onpagehide: true;
|
|
771
|
+
onpageshow: true;
|
|
772
|
+
onpause: true;
|
|
773
|
+
onplay: true;
|
|
774
|
+
onplaying: true;
|
|
775
|
+
onpointercancel: true;
|
|
776
|
+
onpointerdown: true;
|
|
777
|
+
onpointerenter: true;
|
|
778
|
+
onpointerleave: true;
|
|
779
|
+
onpointermove: true;
|
|
780
|
+
onpointerout: true;
|
|
781
|
+
onpointerover: true;
|
|
782
|
+
onpointerup: true;
|
|
783
|
+
onpopstate: true;
|
|
784
|
+
onprogress: true;
|
|
785
|
+
onratechange: true;
|
|
786
|
+
onrejectionhandled: true;
|
|
787
|
+
onreset: true;
|
|
788
|
+
onresize: true;
|
|
789
|
+
onscroll: true;
|
|
790
|
+
onsearch: true;
|
|
791
|
+
onseeked: true;
|
|
792
|
+
onseeking: true;
|
|
793
|
+
onselect: true;
|
|
794
|
+
onstalled: true;
|
|
795
|
+
onstorage: true;
|
|
796
|
+
onsubmit: true;
|
|
797
|
+
onsuspend: true;
|
|
798
|
+
ontimeupdate: true;
|
|
799
|
+
ontoggle: true;
|
|
800
|
+
ontransitionend: true;
|
|
801
|
+
onunhandledrejection: true;
|
|
802
|
+
onunload: true;
|
|
803
|
+
onvolumechange: true;
|
|
804
|
+
onwaiting: true;
|
|
805
|
+
onwheel: true;
|
|
806
|
+
open: false;
|
|
807
|
+
openDatabase: false;
|
|
808
|
+
opener: false;
|
|
809
|
+
Option: false;
|
|
810
|
+
origin: false;
|
|
811
|
+
OscillatorNode: false;
|
|
812
|
+
outerHeight: false;
|
|
813
|
+
outerWidth: false;
|
|
814
|
+
OverconstrainedError: false;
|
|
815
|
+
PageTransitionEvent: false;
|
|
816
|
+
pageXOffset: false;
|
|
817
|
+
pageYOffset: false;
|
|
818
|
+
PannerNode: false;
|
|
819
|
+
parent: false;
|
|
820
|
+
Path2D: false;
|
|
821
|
+
PaymentAddress: false;
|
|
822
|
+
PaymentRequest: false;
|
|
823
|
+
PaymentRequestUpdateEvent: false;
|
|
824
|
+
PaymentResponse: false;
|
|
825
|
+
Performance: false;
|
|
826
|
+
PerformanceLongTaskTiming: false;
|
|
827
|
+
PerformanceNavigation: false;
|
|
828
|
+
PerformanceNavigationTiming: false;
|
|
829
|
+
PerformancePaintTiming: false;
|
|
830
|
+
PerformanceTiming: false;
|
|
831
|
+
PeriodicWave: false;
|
|
832
|
+
Permissions: false;
|
|
833
|
+
PermissionStatus: false;
|
|
834
|
+
personalbar: false;
|
|
835
|
+
PhotoCapabilities: false;
|
|
836
|
+
Plugin: false;
|
|
837
|
+
PluginArray: false;
|
|
838
|
+
PointerEvent: false;
|
|
839
|
+
PopStateEvent: false;
|
|
840
|
+
postMessage: false;
|
|
841
|
+
Presentation: false;
|
|
842
|
+
PresentationAvailability: false;
|
|
843
|
+
PresentationConnection: false;
|
|
844
|
+
PresentationConnectionAvailableEvent: false;
|
|
845
|
+
PresentationConnectionCloseEvent: false;
|
|
846
|
+
PresentationConnectionList: false;
|
|
847
|
+
PresentationReceiver: false;
|
|
848
|
+
PresentationRequest: false;
|
|
849
|
+
print: false;
|
|
850
|
+
ProcessingInstruction: false;
|
|
851
|
+
ProgressEvent: false;
|
|
852
|
+
PromiseRejectionEvent: false;
|
|
853
|
+
prompt: false;
|
|
854
|
+
PushManager: false;
|
|
855
|
+
PushSubscription: false;
|
|
856
|
+
PushSubscriptionOptions: false;
|
|
857
|
+
RadioNodeList: false;
|
|
858
|
+
Range: false;
|
|
859
|
+
registerProcessor: false;
|
|
860
|
+
RemotePlayback: false;
|
|
861
|
+
removeEventListener: false;
|
|
862
|
+
reportError: false;
|
|
863
|
+
requestAnimationFrame: false;
|
|
864
|
+
requestIdleCallback: false;
|
|
865
|
+
resizeBy: false;
|
|
866
|
+
ResizeObserver: false;
|
|
867
|
+
ResizeObserverEntry: false;
|
|
868
|
+
resizeTo: false;
|
|
869
|
+
RTCCertificate: false;
|
|
870
|
+
RTCDataChannel: false;
|
|
871
|
+
RTCDataChannelEvent: false;
|
|
872
|
+
RTCDtlsTransport: false;
|
|
873
|
+
RTCIceCandidate: false;
|
|
874
|
+
RTCIceGatherer: false;
|
|
875
|
+
RTCIceTransport: false;
|
|
876
|
+
RTCPeerConnection: false;
|
|
877
|
+
RTCPeerConnectionIceEvent: false;
|
|
878
|
+
RTCRtpContributingSource: false;
|
|
879
|
+
RTCRtpReceiver: false;
|
|
880
|
+
RTCRtpSender: false;
|
|
881
|
+
RTCSctpTransport: false;
|
|
882
|
+
RTCSessionDescription: false;
|
|
883
|
+
RTCStatsReport: false;
|
|
884
|
+
RTCTrackEvent: false;
|
|
885
|
+
screen: false;
|
|
886
|
+
Screen: false;
|
|
887
|
+
screenLeft: false;
|
|
888
|
+
ScreenOrientation: false;
|
|
889
|
+
screenTop: false;
|
|
890
|
+
screenX: false;
|
|
891
|
+
screenY: false;
|
|
892
|
+
ScriptProcessorNode: false;
|
|
893
|
+
scroll: false;
|
|
894
|
+
scrollbars: false;
|
|
895
|
+
scrollBy: false;
|
|
896
|
+
scrollTo: false;
|
|
897
|
+
scrollX: false;
|
|
898
|
+
scrollY: false;
|
|
899
|
+
SecurityPolicyViolationEvent: false;
|
|
900
|
+
Selection: false;
|
|
901
|
+
self: false;
|
|
902
|
+
ServiceWorker: false;
|
|
903
|
+
ServiceWorkerContainer: false;
|
|
904
|
+
ServiceWorkerRegistration: false;
|
|
905
|
+
sessionStorage: false;
|
|
906
|
+
ShadowRoot: false;
|
|
907
|
+
SharedWorker: false;
|
|
908
|
+
SourceBuffer: false;
|
|
909
|
+
SourceBufferList: false;
|
|
910
|
+
speechSynthesis: false;
|
|
911
|
+
SpeechSynthesisEvent: false;
|
|
912
|
+
SpeechSynthesisUtterance: false;
|
|
913
|
+
StaticRange: false;
|
|
914
|
+
status: false;
|
|
915
|
+
statusbar: false;
|
|
916
|
+
StereoPannerNode: false;
|
|
917
|
+
stop: false;
|
|
918
|
+
Storage: false;
|
|
919
|
+
StorageEvent: false;
|
|
920
|
+
StorageManager: false;
|
|
921
|
+
styleMedia: false;
|
|
922
|
+
StyleSheet: false;
|
|
923
|
+
StyleSheetList: false;
|
|
924
|
+
SubmitEvent: false;
|
|
925
|
+
SVGAElement: false;
|
|
926
|
+
SVGAngle: false;
|
|
927
|
+
SVGAnimatedAngle: false;
|
|
928
|
+
SVGAnimatedBoolean: false;
|
|
929
|
+
SVGAnimatedEnumeration: false;
|
|
930
|
+
SVGAnimatedInteger: false;
|
|
931
|
+
SVGAnimatedLength: false;
|
|
932
|
+
SVGAnimatedLengthList: false;
|
|
933
|
+
SVGAnimatedNumber: false;
|
|
934
|
+
SVGAnimatedNumberList: false;
|
|
935
|
+
SVGAnimatedPreserveAspectRatio: false;
|
|
936
|
+
SVGAnimatedRect: false;
|
|
937
|
+
SVGAnimatedString: false;
|
|
938
|
+
SVGAnimatedTransformList: false;
|
|
939
|
+
SVGAnimateElement: false;
|
|
940
|
+
SVGAnimateMotionElement: false;
|
|
941
|
+
SVGAnimateTransformElement: false;
|
|
942
|
+
SVGAnimationElement: false;
|
|
943
|
+
SVGCircleElement: false;
|
|
944
|
+
SVGClipPathElement: false;
|
|
945
|
+
SVGComponentTransferFunctionElement: false;
|
|
946
|
+
SVGDefsElement: false;
|
|
947
|
+
SVGDescElement: false;
|
|
948
|
+
SVGDiscardElement: false;
|
|
949
|
+
SVGElement: false;
|
|
950
|
+
SVGEllipseElement: false;
|
|
951
|
+
SVGFEBlendElement: false;
|
|
952
|
+
SVGFEColorMatrixElement: false;
|
|
953
|
+
SVGFEComponentTransferElement: false;
|
|
954
|
+
SVGFECompositeElement: false;
|
|
955
|
+
SVGFEConvolveMatrixElement: false;
|
|
956
|
+
SVGFEDiffuseLightingElement: false;
|
|
957
|
+
SVGFEDisplacementMapElement: false;
|
|
958
|
+
SVGFEDistantLightElement: false;
|
|
959
|
+
SVGFEDropShadowElement: false;
|
|
960
|
+
SVGFEFloodElement: false;
|
|
961
|
+
SVGFEFuncAElement: false;
|
|
962
|
+
SVGFEFuncBElement: false;
|
|
963
|
+
SVGFEFuncGElement: false;
|
|
964
|
+
SVGFEFuncRElement: false;
|
|
965
|
+
SVGFEGaussianBlurElement: false;
|
|
966
|
+
SVGFEImageElement: false;
|
|
967
|
+
SVGFEMergeElement: false;
|
|
968
|
+
SVGFEMergeNodeElement: false;
|
|
969
|
+
SVGFEMorphologyElement: false;
|
|
970
|
+
SVGFEOffsetElement: false;
|
|
971
|
+
SVGFEPointLightElement: false;
|
|
972
|
+
SVGFESpecularLightingElement: false;
|
|
973
|
+
SVGFESpotLightElement: false;
|
|
974
|
+
SVGFETileElement: false;
|
|
975
|
+
SVGFETurbulenceElement: false;
|
|
976
|
+
SVGFilterElement: false;
|
|
977
|
+
SVGForeignObjectElement: false;
|
|
978
|
+
SVGGElement: false;
|
|
979
|
+
SVGGeometryElement: false;
|
|
980
|
+
SVGGradientElement: false;
|
|
981
|
+
SVGGraphicsElement: false;
|
|
982
|
+
SVGImageElement: false;
|
|
983
|
+
SVGLength: false;
|
|
984
|
+
SVGLengthList: false;
|
|
985
|
+
SVGLinearGradientElement: false;
|
|
986
|
+
SVGLineElement: false;
|
|
987
|
+
SVGMarkerElement: false;
|
|
988
|
+
SVGMaskElement: false;
|
|
989
|
+
SVGMatrix: false;
|
|
990
|
+
SVGMetadataElement: false;
|
|
991
|
+
SVGMPathElement: false;
|
|
992
|
+
SVGNumber: false;
|
|
993
|
+
SVGNumberList: false;
|
|
994
|
+
SVGPathElement: false;
|
|
995
|
+
SVGPatternElement: false;
|
|
996
|
+
SVGPoint: false;
|
|
997
|
+
SVGPointList: false;
|
|
998
|
+
SVGPolygonElement: false;
|
|
999
|
+
SVGPolylineElement: false;
|
|
1000
|
+
SVGPreserveAspectRatio: false;
|
|
1001
|
+
SVGRadialGradientElement: false;
|
|
1002
|
+
SVGRect: false;
|
|
1003
|
+
SVGRectElement: false;
|
|
1004
|
+
SVGScriptElement: false;
|
|
1005
|
+
SVGSetElement: false;
|
|
1006
|
+
SVGStopElement: false;
|
|
1007
|
+
SVGStringList: false;
|
|
1008
|
+
SVGStyleElement: false;
|
|
1009
|
+
SVGSVGElement: false;
|
|
1010
|
+
SVGSwitchElement: false;
|
|
1011
|
+
SVGSymbolElement: false;
|
|
1012
|
+
SVGTextContentElement: false;
|
|
1013
|
+
SVGTextElement: false;
|
|
1014
|
+
SVGTextPathElement: false;
|
|
1015
|
+
SVGTextPositioningElement: false;
|
|
1016
|
+
SVGTitleElement: false;
|
|
1017
|
+
SVGTransform: false;
|
|
1018
|
+
SVGTransformList: false;
|
|
1019
|
+
SVGTSpanElement: false;
|
|
1020
|
+
SVGUnitTypes: false;
|
|
1021
|
+
SVGUseElement: false;
|
|
1022
|
+
SVGViewElement: false;
|
|
1023
|
+
TaskAttributionTiming: false;
|
|
1024
|
+
Text: false;
|
|
1025
|
+
TextEvent: false;
|
|
1026
|
+
TextMetrics: false;
|
|
1027
|
+
TextTrack: false;
|
|
1028
|
+
TextTrackCue: false;
|
|
1029
|
+
TextTrackCueList: false;
|
|
1030
|
+
TextTrackList: false;
|
|
1031
|
+
TimeRanges: false;
|
|
1032
|
+
ToggleEvent: false;
|
|
1033
|
+
toolbar: false;
|
|
1034
|
+
top: false;
|
|
1035
|
+
Touch: false;
|
|
1036
|
+
TouchEvent: false;
|
|
1037
|
+
TouchList: false;
|
|
1038
|
+
TrackEvent: false;
|
|
1039
|
+
TransitionEvent: false;
|
|
1040
|
+
TreeWalker: false;
|
|
1041
|
+
UIEvent: false;
|
|
1042
|
+
ValidityState: false;
|
|
1043
|
+
visualViewport: false;
|
|
1044
|
+
VisualViewport: false;
|
|
1045
|
+
VTTCue: false;
|
|
1046
|
+
WaveShaperNode: false;
|
|
1047
|
+
WebGL2RenderingContext: false;
|
|
1048
|
+
WebGLActiveInfo: false;
|
|
1049
|
+
WebGLBuffer: false;
|
|
1050
|
+
WebGLContextEvent: false;
|
|
1051
|
+
WebGLFramebuffer: false;
|
|
1052
|
+
WebGLProgram: false;
|
|
1053
|
+
WebGLQuery: false;
|
|
1054
|
+
WebGLRenderbuffer: false;
|
|
1055
|
+
WebGLRenderingContext: false;
|
|
1056
|
+
WebGLSampler: false;
|
|
1057
|
+
WebGLShader: false;
|
|
1058
|
+
WebGLShaderPrecisionFormat: false;
|
|
1059
|
+
WebGLSync: false;
|
|
1060
|
+
WebGLTexture: false;
|
|
1061
|
+
WebGLTransformFeedback: false;
|
|
1062
|
+
WebGLUniformLocation: false;
|
|
1063
|
+
WebGLVertexArrayObject: false;
|
|
1064
|
+
WebSocket: false;
|
|
1065
|
+
WheelEvent: false;
|
|
1066
|
+
window: false;
|
|
1067
|
+
Window: false;
|
|
1068
|
+
Worker: false;
|
|
1069
|
+
XMLDocument: false;
|
|
1070
|
+
XMLHttpRequest: false;
|
|
1071
|
+
XMLHttpRequestEventTarget: false;
|
|
1072
|
+
XMLHttpRequestUpload: false;
|
|
1073
|
+
XMLSerializer: false;
|
|
1074
|
+
XPathEvaluator: false;
|
|
1075
|
+
XPathExpression: false;
|
|
1076
|
+
XPathResult: false;
|
|
1077
|
+
XRAnchor: false;
|
|
1078
|
+
XRBoundedReferenceSpace: false;
|
|
1079
|
+
XRCPUDepthInformation: false;
|
|
1080
|
+
XRDepthInformation: false;
|
|
1081
|
+
XRFrame: false;
|
|
1082
|
+
XRInputSource: false;
|
|
1083
|
+
XRInputSourceArray: false;
|
|
1084
|
+
XRInputSourceEvent: false;
|
|
1085
|
+
XRInputSourcesChangeEvent: false;
|
|
1086
|
+
XRPose: false;
|
|
1087
|
+
XRReferenceSpace: false;
|
|
1088
|
+
XRReferenceSpaceEvent: false;
|
|
1089
|
+
XRRenderState: false;
|
|
1090
|
+
XRRigidTransform: false;
|
|
1091
|
+
XRSession: false;
|
|
1092
|
+
XRSessionEvent: false;
|
|
1093
|
+
XRSpace: false;
|
|
1094
|
+
XRSystem: false;
|
|
1095
|
+
XRView: false;
|
|
1096
|
+
XRViewerPose: false;
|
|
1097
|
+
XRViewport: false;
|
|
1098
|
+
XRWebGLBinding: false;
|
|
1099
|
+
XRWebGLDepthInformation: false;
|
|
1100
|
+
XRWebGLLayer: false;
|
|
1101
|
+
XSLTProcessor: false;
|
|
1102
|
+
};
|
|
1103
|
+
parser?: undefined;
|
|
1104
|
+
};
|
|
1105
|
+
rules: {
|
|
1106
|
+
curly: string;
|
|
1107
|
+
'no-console': string;
|
|
1108
|
+
'no-undef': string;
|
|
1109
|
+
'no-var': string;
|
|
1110
|
+
'no-unreachable': string;
|
|
1111
|
+
'no-unused-vars': string;
|
|
1112
|
+
'object-shorthand': string[];
|
|
1113
|
+
'react/jsx-no-undef': string;
|
|
1114
|
+
'react/prop-types': string;
|
|
1115
|
+
'@typescript-eslint/no-unused-vars'?: undefined;
|
|
1116
|
+
'@typescript-eslint/no-empty-interface'?: undefined;
|
|
1117
|
+
'@typescript-eslint/ban-ts-ignore'?: undefined;
|
|
1118
|
+
'@typescript-eslint/no-empty-function'?: undefined;
|
|
1119
|
+
'@typescript-eslint/explicit-function-return-type'?: undefined;
|
|
1120
|
+
'@typescript-eslint/no-explicit-any'?: undefined;
|
|
1121
|
+
'import/no-unresolved'?: undefined;
|
|
1122
|
+
};
|
|
1123
|
+
settings: {
|
|
1124
|
+
react: {
|
|
1125
|
+
version: string;
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
files?: undefined;
|
|
1129
|
+
} | {
|
|
1130
|
+
files: string[];
|
|
1131
|
+
plugins: {
|
|
1132
|
+
'@typescript-eslint': {
|
|
1133
|
+
configs: Record<string, import("@typescript-eslint/utils/ts-eslint").ClassicConfig.Config>;
|
|
1134
|
+
meta: import("@typescript-eslint/utils/ts-eslint").FlatConfig.PluginMeta;
|
|
1135
|
+
rules: typeof import("@typescript-eslint/eslint-plugin/use-at-your-own-risk/rules");
|
|
1136
|
+
};
|
|
1137
|
+
import?: undefined;
|
|
1138
|
+
react?: undefined;
|
|
1139
|
+
};
|
|
1140
|
+
languageOptions: {
|
|
1141
|
+
parser: typeof esParser;
|
|
1142
|
+
ecmaVersion?: undefined;
|
|
1143
|
+
sourceType?: undefined;
|
|
1144
|
+
globals?: undefined;
|
|
1145
|
+
};
|
|
1146
|
+
rules: {
|
|
1147
|
+
'@typescript-eslint/no-unused-vars': (string | {
|
|
1148
|
+
argsIgnorePattern: string;
|
|
1149
|
+
varsIgnorePattern: string;
|
|
1150
|
+
caughtErrorsIgnorePattern: string;
|
|
1151
|
+
})[];
|
|
1152
|
+
'@typescript-eslint/no-empty-interface': number;
|
|
1153
|
+
'@typescript-eslint/ban-ts-ignore': number;
|
|
1154
|
+
'@typescript-eslint/no-empty-function': number;
|
|
1155
|
+
'@typescript-eslint/explicit-function-return-type': number;
|
|
1156
|
+
'@typescript-eslint/no-explicit-any': number;
|
|
1157
|
+
curly?: undefined;
|
|
1158
|
+
'no-console'?: undefined;
|
|
1159
|
+
'no-undef'?: undefined;
|
|
1160
|
+
'no-var'?: undefined;
|
|
1161
|
+
'no-unreachable'?: undefined;
|
|
1162
|
+
'no-unused-vars'?: undefined;
|
|
1163
|
+
'object-shorthand'?: undefined;
|
|
1164
|
+
'react/jsx-no-undef'?: undefined;
|
|
1165
|
+
'react/prop-types'?: undefined;
|
|
1166
|
+
'import/no-unresolved'?: undefined;
|
|
1167
|
+
};
|
|
1168
|
+
ignores?: undefined;
|
|
1169
|
+
settings?: undefined;
|
|
1170
|
+
} | {
|
|
1171
|
+
files: string[];
|
|
1172
|
+
plugins: {
|
|
1173
|
+
import: import("@eslint/core", { with: { "resolution-mode": "require" } }).Plugin & {
|
|
1174
|
+
meta: {
|
|
1175
|
+
name: string;
|
|
1176
|
+
version: string;
|
|
1177
|
+
};
|
|
1178
|
+
configs: {
|
|
1179
|
+
"recommended": import("eslint").Linter.LegacyConfig;
|
|
1180
|
+
"errors": import("eslint").Linter.LegacyConfig;
|
|
1181
|
+
"warnings": import("eslint").Linter.LegacyConfig;
|
|
1182
|
+
"stage-0": import("eslint").Linter.LegacyConfig;
|
|
1183
|
+
"react": import("eslint").Linter.LegacyConfig;
|
|
1184
|
+
"react-native": import("eslint").Linter.LegacyConfig;
|
|
1185
|
+
"electron": import("eslint").Linter.LegacyConfig;
|
|
1186
|
+
"typescript": import("eslint").Linter.LegacyConfig;
|
|
1187
|
+
};
|
|
1188
|
+
flatConfigs: {
|
|
1189
|
+
"recommended": import("eslint").Linter.FlatConfig;
|
|
1190
|
+
"errors": import("eslint").Linter.FlatConfig;
|
|
1191
|
+
"warnings": import("eslint").Linter.FlatConfig;
|
|
1192
|
+
"stage-0": import("eslint").Linter.FlatConfig;
|
|
1193
|
+
"react": import("eslint").Linter.FlatConfig;
|
|
1194
|
+
"react-native": import("eslint").Linter.FlatConfig;
|
|
1195
|
+
"electron": import("eslint").Linter.FlatConfig;
|
|
1196
|
+
"typescript": import("eslint").Linter.FlatConfig;
|
|
1197
|
+
};
|
|
1198
|
+
rules: {
|
|
1199
|
+
[key: string]: import("eslint").Rule.RuleModule;
|
|
1200
|
+
};
|
|
1201
|
+
};
|
|
1202
|
+
react?: undefined;
|
|
1203
|
+
'@typescript-eslint'?: undefined;
|
|
1204
|
+
};
|
|
1205
|
+
rules: {
|
|
1206
|
+
[x: string]: import("@eslint/core", { with: { "resolution-mode": "require" } }).RuleConfig<unknown[]> | undefined;
|
|
1207
|
+
curly?: undefined;
|
|
1208
|
+
'no-console'?: undefined;
|
|
1209
|
+
'no-undef'?: undefined;
|
|
1210
|
+
'no-var'?: undefined;
|
|
1211
|
+
'no-unreachable'?: undefined;
|
|
1212
|
+
'no-unused-vars'?: undefined;
|
|
1213
|
+
'object-shorthand'?: undefined;
|
|
1214
|
+
'react/jsx-no-undef'?: undefined;
|
|
1215
|
+
'react/prop-types'?: undefined;
|
|
1216
|
+
'@typescript-eslint/no-unused-vars'?: undefined;
|
|
1217
|
+
'@typescript-eslint/no-empty-interface'?: undefined;
|
|
1218
|
+
'@typescript-eslint/ban-ts-ignore'?: undefined;
|
|
1219
|
+
'@typescript-eslint/no-empty-function'?: undefined;
|
|
1220
|
+
'@typescript-eslint/explicit-function-return-type'?: undefined;
|
|
1221
|
+
'@typescript-eslint/no-explicit-any'?: undefined;
|
|
1222
|
+
'import/no-unresolved'?: undefined;
|
|
1223
|
+
};
|
|
1224
|
+
ignores?: undefined;
|
|
1225
|
+
languageOptions?: undefined;
|
|
1226
|
+
settings?: undefined;
|
|
1227
|
+
} | {
|
|
1228
|
+
files: string[];
|
|
1229
|
+
rules: {
|
|
1230
|
+
'import/no-unresolved': string;
|
|
1231
|
+
curly?: undefined;
|
|
1232
|
+
'no-console'?: undefined;
|
|
1233
|
+
'no-undef'?: undefined;
|
|
1234
|
+
'no-var'?: undefined;
|
|
1235
|
+
'no-unreachable'?: undefined;
|
|
1236
|
+
'no-unused-vars'?: undefined;
|
|
1237
|
+
'object-shorthand'?: undefined;
|
|
1238
|
+
'react/jsx-no-undef'?: undefined;
|
|
1239
|
+
'react/prop-types'?: undefined;
|
|
1240
|
+
'@typescript-eslint/no-unused-vars'?: undefined;
|
|
1241
|
+
'@typescript-eslint/no-empty-interface'?: undefined;
|
|
1242
|
+
'@typescript-eslint/ban-ts-ignore'?: undefined;
|
|
1243
|
+
'@typescript-eslint/no-empty-function'?: undefined;
|
|
1244
|
+
'@typescript-eslint/explicit-function-return-type'?: undefined;
|
|
1245
|
+
'@typescript-eslint/no-explicit-any'?: undefined;
|
|
1246
|
+
};
|
|
1247
|
+
ignores?: undefined;
|
|
1248
|
+
plugins?: undefined;
|
|
1249
|
+
languageOptions?: undefined;
|
|
1250
|
+
settings?: undefined;
|
|
1251
|
+
})[];
|
|
2
1252
|
export default _default;
|
|
1253
|
+
import esReact from 'eslint-plugin-react';
|
|
1254
|
+
import esParser from '@typescript-eslint/parser';
|
package/build/eslint.config.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import globals from 'globals';
|
|
2
2
|
import prettierConfig from 'eslint-config-prettier/flat';
|
|
3
|
-
import biomeConfig from 'eslint-config-biome';
|
|
4
3
|
import esTypescript from '@typescript-eslint/eslint-plugin';
|
|
5
4
|
import esParser from '@typescript-eslint/parser';
|
|
6
5
|
import esImport from 'eslint-plugin-import';
|
|
@@ -80,6 +79,5 @@ export default [
|
|
|
80
79
|
'import/no-unresolved': 'off',
|
|
81
80
|
},
|
|
82
81
|
},
|
|
83
|
-
biomeConfig,
|
|
84
82
|
];
|
|
85
83
|
//# sourceMappingURL=eslint.config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslint.config.js","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAE7B,OAAO,cAAc,MAAM,6BAA6B,CAAA;
|
|
1
|
+
{"version":3,"file":"eslint.config.js","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAE7B,OAAO,cAAc,MAAM,6BAA6B,CAAA;AAExD,OAAO,YAAY,MAAM,kCAAkC,CAAA;AAC3D,OAAO,QAAQ,MAAM,2BAA2B,CAAA;AAEhD,OAAO,QAAQ,MAAM,sBAAsB,CAAA;AAC3C,OAAO,OAAO,MAAM,qBAAqB,CAAA;AAEzC,eAAe;IACX,cAAc;IACd;QACI,OAAO,EAAE,CAAC,UAAU,CAAC;QACrB,OAAO,EAAE;YACL,MAAM,EAAE,QAAQ;YAChB,KAAK,EAAE,OAAO;SACjB;QACD,eAAe,EAAE;YACb,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,OAAO,EAAE;gBACL,GAAG,OAAO,CAAC,OAAO;gBAClB,GAAG,OAAO,CAAC,IAAI;gBACf,GAAG,OAAO,CAAC,IAAI;aAClB;SACJ;QACD,KAAK,EAAE;YACH,KAAK,EAAE,OAAO;YACd,YAAY,EAAE,KAAK;YACnB,UAAU,EAAE,KAAK;YACjB,QAAQ,EAAE,OAAO;YACjB,gBAAgB,EAAE,OAAO;YACzB,gBAAgB,EAAE,KAAK;YACvB,kBAAkB,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC;YACvC,oBAAoB,EAAE,OAAO;YAC7B,kBAAkB,EAAE,KAAK;SAC5B;QACD,QAAQ,EAAE;YACN,KAAK,EAAE;gBACH,OAAO,EAAE,QAAQ;aACpB;SACJ;KACJ;IACD;QACI,KAAK,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;QAC9B,OAAO,EAAE;YACL,oBAAoB,EAAE,YAAY;SACrC;QACD,eAAe,EAAE;YACb,MAAM,EAAE,QAAQ;SACnB;QACD,KAAK,EAAE;YACH,mCAAmC,EAAE;gBACjC,OAAO;gBACP;oBACI,iBAAiB,EAAE,IAAI;oBACvB,iBAAiB,EAAE,IAAI;oBACvB,yBAAyB,EAAE,IAAI;iBAClC;aACJ;YACD,uCAAuC,EAAE,CAAC;YAC1C,+DAA+D;YAC/D,kEAAkE;YAClE,kCAAkC,EAAE,CAAC;YACrC,sCAAsC,EAAE,CAAC;YACzC,kDAAkD,EAAE,CAAC;YACrD,oCAAoC,EAAE,CAAC;SAC1C;KACJ;IACD;QACI,KAAK,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;QAC9B,OAAO,EAAE;YACL,MAAM,EAAE,QAAQ;SACnB;QACD,KAAK,EAAE;YACH,GAAG,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK;SACxC;KACJ;IACD;QACI,KAAK,EAAE,CAAC,qBAAqB,CAAC;QAC9B,KAAK,EAAE;YACH,sBAAsB,EAAE,KAAK;SAChC;KACJ;CACJ,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurodevs/eslint-config-ndx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "ESLint config for the Neurodevs ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
46
46
|
"@typescript-eslint/parser": "^8.56.0",
|
|
47
47
|
"eslint": "^9.39.2",
|
|
48
|
-
"eslint-config-biome": "^2.1.3",
|
|
49
48
|
"eslint-config-prettier": "^10.1.8",
|
|
50
49
|
"eslint-plugin-import": "^2.32.0",
|
|
51
50
|
"eslint-plugin-react": "^7.37.5"
|
package/src/eslint.config.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import globals from 'globals'
|
|
2
2
|
|
|
3
3
|
import prettierConfig from 'eslint-config-prettier/flat'
|
|
4
|
-
import biomeConfig from 'eslint-config-biome'
|
|
5
4
|
|
|
6
5
|
import esTypescript from '@typescript-eslint/eslint-plugin'
|
|
7
6
|
import esParser from '@typescript-eslint/parser'
|
|
@@ -84,5 +83,4 @@ export default [
|
|
|
84
83
|
'import/no-unresolved': 'off',
|
|
85
84
|
},
|
|
86
85
|
},
|
|
87
|
-
biomeConfig,
|
|
88
86
|
]
|