eslint-config-airbnb-extended 0.0.8 → 0.1.0

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/base/index.ts +21 -0
  3. package/base/recommended.ts +17 -0
  4. package/index.ts +25 -0
  5. package/package.json +33 -45
  6. package/react/index.ts +11 -0
  7. package/react/recommended.ts +6 -0
  8. package/rules/best-practices.ts +462 -0
  9. package/rules/errors.ts +199 -0
  10. package/rules/es6.ts +224 -0
  11. package/rules/imports.ts +308 -0
  12. package/rules/node.ts +49 -0
  13. package/rules/react-a11y.ts +295 -0
  14. package/rules/react-hooks.ts +26 -0
  15. package/rules/react.ts +692 -0
  16. package/rules/strict.ts +9 -0
  17. package/rules/style.ts +632 -0
  18. package/rules/typescript.ts +312 -0
  19. package/rules/variables.ts +76 -0
  20. package/tsconfig.json +22 -0
  21. package/typescript/index.ts +7 -0
  22. package/typescript/recommended.ts +30 -0
  23. package/README.md +0 -1
  24. package/dist/base/index.d.ts +0 -842
  25. package/dist/base/index.js +0 -25
  26. package/dist/base/recommended.d.ts +0 -2
  27. package/dist/base/recommended.js +0 -33
  28. package/dist/index.d.ts +0 -2639
  29. package/dist/index.js +0 -20
  30. package/dist/react/index.d.ts +0 -1799
  31. package/dist/react/index.js +0 -15
  32. package/dist/react/recommended.d.ts +0 -2
  33. package/dist/react/recommended.js +0 -19
  34. package/dist/rules/best-practices.d.ts +0 -177
  35. package/dist/rules/best-practices.js +0 -379
  36. package/dist/rules/errors.d.ts +0 -69
  37. package/dist/rules/errors.js +0 -151
  38. package/dist/rules/es6.d.ts +0 -146
  39. package/dist/rules/es6.js +0 -203
  40. package/dist/rules/imports.d.ts +0 -2
  41. package/dist/rules/imports.js +0 -265
  42. package/dist/rules/node.d.ts +0 -90
  43. package/dist/rules/node.js +0 -50
  44. package/dist/rules/react-a11y.d.ts +0 -117
  45. package/dist/rules/react-a11y.js +0 -255
  46. package/dist/rules/react-hooks.d.ts +0 -19
  47. package/dist/rules/react-hooks.js +0 -57
  48. package/dist/rules/react.d.ts +0 -1664
  49. package/dist/rules/react.js +0 -606
  50. package/dist/rules/strict.d.ts +0 -7
  51. package/dist/rules/strict.js +0 -9
  52. package/dist/rules/style.d.ts +0 -320
  53. package/dist/rules/style.js +0 -530
  54. package/dist/rules/variables.d.ts +0 -35
  55. package/dist/rules/variables.js +0 -73
  56. package/dist/utils/index.d.ts +0 -1
  57. package/dist/utils/index.js +0 -4
@@ -1,1799 +0,0 @@
1
- declare const _default: {
2
- react: {
3
- name: string;
4
- plugins: {
5
- react: {
6
- deprecatedRules: Partial<{
7
- 'boolean-prop-naming': import("eslint").Rule.RuleModule;
8
- 'button-has-type': import("eslint").Rule.RuleModule;
9
- 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
10
- 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
11
- 'destructuring-assignment': import("eslint").Rule.RuleModule;
12
- 'display-name': import("eslint").Rule.RuleModule;
13
- 'forbid-component-props': import("eslint").Rule.RuleModule;
14
- 'forbid-dom-props': import("eslint").Rule.RuleModule;
15
- 'forbid-elements': import("eslint").Rule.RuleModule;
16
- 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
17
- 'forbid-prop-types': import("eslint").Rule.RuleModule;
18
- 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
19
- 'function-component-definition': import("eslint").Rule.RuleModule;
20
- 'hook-use-state': import("eslint").Rule.RuleModule;
21
- 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
22
- 'jsx-boolean-value': import("eslint").Rule.RuleModule;
23
- 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
24
- 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
25
- 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
26
- 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
27
- 'jsx-curly-newline': import("eslint").Rule.RuleModule;
28
- 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
29
- 'jsx-filename-extension': import("eslint").Rule.RuleModule;
30
- 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
31
- 'jsx-handler-names': import("eslint").Rule.RuleModule;
32
- 'jsx-indent': import("eslint").Rule.RuleModule;
33
- 'jsx-indent-props': import("eslint").Rule.RuleModule;
34
- 'jsx-key': import("eslint").Rule.RuleModule;
35
- 'jsx-max-depth': import("eslint").Rule.RuleModule;
36
- 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
37
- 'jsx-newline': import("eslint").Rule.RuleModule;
38
- 'jsx-no-bind': import("eslint").Rule.RuleModule;
39
- 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
40
- 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
41
- 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
42
- 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
43
- 'jsx-no-literals': import("eslint").Rule.RuleModule;
44
- 'jsx-no-script-url': import("eslint").Rule.RuleModule;
45
- 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
46
- 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
47
- 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
48
- 'jsx-no-undef': import("eslint").Rule.RuleModule;
49
- 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
50
- 'jsx-pascal-case': import("eslint").Rule.RuleModule;
51
- 'jsx-fragments': import("eslint").Rule.RuleModule;
52
- 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
53
- 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
54
- 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
55
- 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
56
- 'jsx-sort-props': import("eslint").Rule.RuleModule;
57
- 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
58
- 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
59
- 'jsx-uses-react': import("eslint").Rule.RuleModule;
60
- 'jsx-uses-vars': import("eslint").Rule.RuleModule;
61
- 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
62
- 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
63
- 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
64
- 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
65
- 'no-array-index-key': import("eslint").Rule.RuleModule;
66
- 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
67
- 'no-children-prop': import("eslint").Rule.RuleModule;
68
- 'no-danger': import("eslint").Rule.RuleModule;
69
- 'no-danger-with-children': import("eslint").Rule.RuleModule;
70
- 'no-deprecated': import("eslint").Rule.RuleModule;
71
- 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
72
- 'no-did-update-set-state': import("eslint").Rule.RuleModule;
73
- 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
74
- 'no-find-dom-node': import("eslint").Rule.RuleModule;
75
- 'no-is-mounted': import("eslint").Rule.RuleModule;
76
- 'no-multi-comp': import("eslint").Rule.RuleModule;
77
- 'no-namespace': import("eslint").Rule.RuleModule;
78
- 'no-set-state': import("eslint").Rule.RuleModule;
79
- 'no-string-refs': import("eslint").Rule.RuleModule;
80
- 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
81
- 'no-render-return-value': import("eslint").Rule.RuleModule;
82
- 'no-this-in-sfc': import("eslint").Rule.RuleModule;
83
- 'no-typos': import("eslint").Rule.RuleModule;
84
- 'no-unescaped-entities': import("eslint").Rule.RuleModule;
85
- 'no-unknown-property': import("eslint").Rule.RuleModule;
86
- 'no-unsafe': import("eslint").Rule.RuleModule;
87
- 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
88
- 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
89
- 'no-unused-prop-types': import("eslint").Rule.RuleModule;
90
- 'no-unused-state': import("eslint").Rule.RuleModule;
91
- 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
92
- 'no-will-update-set-state': import("eslint").Rule.RuleModule;
93
- 'prefer-es6-class': import("eslint").Rule.RuleModule;
94
- 'prefer-exact-props': import("eslint").Rule.RuleModule;
95
- 'prefer-read-only-props': import("eslint").Rule.RuleModule;
96
- 'prefer-stateless-function': import("eslint").Rule.RuleModule;
97
- 'prop-types': import("eslint").Rule.RuleModule;
98
- 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
99
- 'require-default-props': import("eslint").Rule.RuleModule;
100
- 'require-optimization': import("eslint").Rule.RuleModule;
101
- 'require-render-return': import("eslint").Rule.RuleModule;
102
- 'self-closing-comp': import("eslint").Rule.RuleModule;
103
- 'sort-comp': import("eslint").Rule.RuleModule;
104
- 'sort-default-props': import("eslint").Rule.RuleModule;
105
- 'sort-prop-types': import("eslint").Rule.RuleModule;
106
- 'state-in-constructor': import("eslint").Rule.RuleModule;
107
- 'static-property-placement': import("eslint").Rule.RuleModule;
108
- 'style-prop-object': import("eslint").Rule.RuleModule;
109
- 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
110
- }>;
111
- rules: {
112
- 'boolean-prop-naming': import("eslint").Rule.RuleModule;
113
- 'button-has-type': import("eslint").Rule.RuleModule;
114
- 'checked-requires-onchange-or-readonly': import("eslint").Rule.RuleModule;
115
- 'default-props-match-prop-types': import("eslint").Rule.RuleModule;
116
- 'destructuring-assignment': import("eslint").Rule.RuleModule;
117
- 'display-name': import("eslint").Rule.RuleModule;
118
- 'forbid-component-props': import("eslint").Rule.RuleModule;
119
- 'forbid-dom-props': import("eslint").Rule.RuleModule;
120
- 'forbid-elements': import("eslint").Rule.RuleModule;
121
- 'forbid-foreign-prop-types': import("eslint").Rule.RuleModule;
122
- 'forbid-prop-types': import("eslint").Rule.RuleModule;
123
- 'forward-ref-uses-ref': import("eslint").Rule.RuleModule;
124
- 'function-component-definition': import("eslint").Rule.RuleModule;
125
- 'hook-use-state': import("eslint").Rule.RuleModule;
126
- 'iframe-missing-sandbox': import("eslint").Rule.RuleModule;
127
- 'jsx-boolean-value': import("eslint").Rule.RuleModule;
128
- 'jsx-child-element-spacing': import("eslint").Rule.RuleModule;
129
- 'jsx-closing-bracket-location': import("eslint").Rule.RuleModule;
130
- 'jsx-closing-tag-location': import("eslint").Rule.RuleModule;
131
- 'jsx-curly-spacing': import("eslint").Rule.RuleModule;
132
- 'jsx-curly-newline': import("eslint").Rule.RuleModule;
133
- 'jsx-equals-spacing': import("eslint").Rule.RuleModule;
134
- 'jsx-filename-extension': import("eslint").Rule.RuleModule;
135
- 'jsx-first-prop-new-line': import("eslint").Rule.RuleModule;
136
- 'jsx-handler-names': import("eslint").Rule.RuleModule;
137
- 'jsx-indent': import("eslint").Rule.RuleModule;
138
- 'jsx-indent-props': import("eslint").Rule.RuleModule;
139
- 'jsx-key': import("eslint").Rule.RuleModule;
140
- 'jsx-max-depth': import("eslint").Rule.RuleModule;
141
- 'jsx-max-props-per-line': import("eslint").Rule.RuleModule;
142
- 'jsx-newline': import("eslint").Rule.RuleModule;
143
- 'jsx-no-bind': import("eslint").Rule.RuleModule;
144
- 'jsx-no-comment-textnodes': import("eslint").Rule.RuleModule;
145
- 'jsx-no-constructed-context-values': import("eslint").Rule.RuleModule;
146
- 'jsx-no-duplicate-props': import("eslint").Rule.RuleModule;
147
- 'jsx-no-leaked-render': import("eslint").Rule.RuleModule;
148
- 'jsx-no-literals': import("eslint").Rule.RuleModule;
149
- 'jsx-no-script-url': import("eslint").Rule.RuleModule;
150
- 'jsx-no-target-blank': import("eslint").Rule.RuleModule;
151
- 'jsx-no-useless-fragment': import("eslint").Rule.RuleModule;
152
- 'jsx-one-expression-per-line': import("eslint").Rule.RuleModule;
153
- 'jsx-no-undef': import("eslint").Rule.RuleModule;
154
- 'jsx-curly-brace-presence': import("eslint").Rule.RuleModule;
155
- 'jsx-pascal-case': import("eslint").Rule.RuleModule;
156
- 'jsx-fragments': import("eslint").Rule.RuleModule;
157
- 'jsx-props-no-multi-spaces': import("eslint").Rule.RuleModule;
158
- 'jsx-props-no-spreading': import("eslint").Rule.RuleModule;
159
- 'jsx-props-no-spread-multi': import("eslint").Rule.RuleModule;
160
- 'jsx-sort-default-props': import("eslint").Rule.RuleModule;
161
- 'jsx-sort-props': import("eslint").Rule.RuleModule;
162
- 'jsx-space-before-closing': import("eslint").Rule.RuleModule;
163
- 'jsx-tag-spacing': import("eslint").Rule.RuleModule;
164
- 'jsx-uses-react': import("eslint").Rule.RuleModule;
165
- 'jsx-uses-vars': import("eslint").Rule.RuleModule;
166
- 'jsx-wrap-multilines': import("eslint").Rule.RuleModule;
167
- 'no-invalid-html-attribute': import("eslint").Rule.RuleModule;
168
- 'no-access-state-in-setstate': import("eslint").Rule.RuleModule;
169
- 'no-adjacent-inline-elements': import("eslint").Rule.RuleModule;
170
- 'no-array-index-key': import("eslint").Rule.RuleModule;
171
- 'no-arrow-function-lifecycle': import("eslint").Rule.RuleModule;
172
- 'no-children-prop': import("eslint").Rule.RuleModule;
173
- 'no-danger': import("eslint").Rule.RuleModule;
174
- 'no-danger-with-children': import("eslint").Rule.RuleModule;
175
- 'no-deprecated': import("eslint").Rule.RuleModule;
176
- 'no-did-mount-set-state': import("eslint").Rule.RuleModule;
177
- 'no-did-update-set-state': import("eslint").Rule.RuleModule;
178
- 'no-direct-mutation-state': import("eslint").Rule.RuleModule;
179
- 'no-find-dom-node': import("eslint").Rule.RuleModule;
180
- 'no-is-mounted': import("eslint").Rule.RuleModule;
181
- 'no-multi-comp': import("eslint").Rule.RuleModule;
182
- 'no-namespace': import("eslint").Rule.RuleModule;
183
- 'no-set-state': import("eslint").Rule.RuleModule;
184
- 'no-string-refs': import("eslint").Rule.RuleModule;
185
- 'no-redundant-should-component-update': import("eslint").Rule.RuleModule;
186
- 'no-render-return-value': import("eslint").Rule.RuleModule;
187
- 'no-this-in-sfc': import("eslint").Rule.RuleModule;
188
- 'no-typos': import("eslint").Rule.RuleModule;
189
- 'no-unescaped-entities': import("eslint").Rule.RuleModule;
190
- 'no-unknown-property': import("eslint").Rule.RuleModule;
191
- 'no-unsafe': import("eslint").Rule.RuleModule;
192
- 'no-unstable-nested-components': import("eslint").Rule.RuleModule;
193
- 'no-unused-class-component-methods': import("eslint").Rule.RuleModule;
194
- 'no-unused-prop-types': import("eslint").Rule.RuleModule;
195
- 'no-unused-state': import("eslint").Rule.RuleModule;
196
- 'no-object-type-as-default-prop': import("eslint").Rule.RuleModule;
197
- 'no-will-update-set-state': import("eslint").Rule.RuleModule;
198
- 'prefer-es6-class': import("eslint").Rule.RuleModule;
199
- 'prefer-exact-props': import("eslint").Rule.RuleModule;
200
- 'prefer-read-only-props': import("eslint").Rule.RuleModule;
201
- 'prefer-stateless-function': import("eslint").Rule.RuleModule;
202
- 'prop-types': import("eslint").Rule.RuleModule;
203
- 'react-in-jsx-scope': import("eslint").Rule.RuleModule;
204
- 'require-default-props': import("eslint").Rule.RuleModule;
205
- 'require-optimization': import("eslint").Rule.RuleModule;
206
- 'require-render-return': import("eslint").Rule.RuleModule;
207
- 'self-closing-comp': import("eslint").Rule.RuleModule;
208
- 'sort-comp': import("eslint").Rule.RuleModule;
209
- 'sort-default-props': import("eslint").Rule.RuleModule;
210
- 'sort-prop-types': import("eslint").Rule.RuleModule;
211
- 'state-in-constructor': import("eslint").Rule.RuleModule;
212
- 'static-property-placement': import("eslint").Rule.RuleModule;
213
- 'style-prop-object': import("eslint").Rule.RuleModule;
214
- 'void-dom-elements-no-children': import("eslint").Rule.RuleModule;
215
- };
216
- configs: {
217
- recommended: {
218
- plugins: ["react"];
219
- parserOptions: {
220
- ecmaFeatures: {
221
- jsx: boolean;
222
- };
223
- };
224
- rules: {
225
- "react/display-name": 2;
226
- "react/jsx-key": 2;
227
- "react/jsx-no-comment-textnodes": 2;
228
- "react/jsx-no-duplicate-props": 2;
229
- "react/jsx-no-target-blank": 2;
230
- "react/jsx-no-undef": 2;
231
- "react/jsx-uses-react": 2;
232
- "react/jsx-uses-vars": 2;
233
- "react/no-children-prop": 2;
234
- "react/no-danger-with-children": 2;
235
- "react/no-deprecated": 2;
236
- "react/no-direct-mutation-state": 2;
237
- "react/no-find-dom-node": 2;
238
- "react/no-is-mounted": 2;
239
- "react/no-render-return-value": 2;
240
- "react/no-string-refs": 2;
241
- "react/no-unescaped-entities": 2;
242
- "react/no-unknown-property": 2;
243
- "react/no-unsafe": 0;
244
- "react/prop-types": 2;
245
- "react/react-in-jsx-scope": 2;
246
- "react/require-render-return": 2;
247
- };
248
- };
249
- all: {
250
- plugins: ["react"];
251
- parserOptions: {
252
- ecmaFeatures: {
253
- jsx: boolean;
254
- };
255
- };
256
- 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">;
257
- };
258
- 'jsx-runtime': {
259
- plugins: ["react"];
260
- parserOptions: {
261
- ecmaFeatures: {
262
- jsx: boolean;
263
- };
264
- jsxPragma: any;
265
- };
266
- rules: {
267
- "react/react-in-jsx-scope": 0;
268
- "react/jsx-uses-react": 0;
269
- };
270
- };
271
- flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
272
- } & {
273
- flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
274
- };
275
- };
276
- };
277
- languageOptions: {
278
- parserOptions: {
279
- ecmaFeatures: {
280
- jsx: true;
281
- };
282
- };
283
- globals: {
284
- AbortController: false;
285
- AbortSignal: false;
286
- AbsoluteOrientationSensor: false;
287
- AbstractRange: false;
288
- Accelerometer: false;
289
- addEventListener: false;
290
- ai: false;
291
- AI: false;
292
- AITextSession: false;
293
- alert: false;
294
- AnalyserNode: false;
295
- Animation: false;
296
- AnimationEffect: false;
297
- AnimationEvent: false;
298
- AnimationPlaybackEvent: false;
299
- AnimationTimeline: false;
300
- atob: false;
301
- Attr: false;
302
- Audio: false;
303
- AudioBuffer: false;
304
- AudioBufferSourceNode: false;
305
- AudioContext: false;
306
- AudioData: false;
307
- AudioDecoder: false;
308
- AudioDestinationNode: false;
309
- AudioEncoder: false;
310
- AudioListener: false;
311
- AudioNode: false;
312
- AudioParam: false;
313
- AudioParamMap: false;
314
- AudioProcessingEvent: false;
315
- AudioScheduledSourceNode: false;
316
- AudioSinkInfo: false;
317
- AudioWorklet: false;
318
- AudioWorkletGlobalScope: false;
319
- AudioWorkletNode: false;
320
- AudioWorkletProcessor: false;
321
- AuthenticatorAssertionResponse: false;
322
- AuthenticatorAttestationResponse: false;
323
- AuthenticatorResponse: false;
324
- BackgroundFetchManager: false;
325
- BackgroundFetchRecord: false;
326
- BackgroundFetchRegistration: false;
327
- BarcodeDetector: false;
328
- BarProp: false;
329
- BaseAudioContext: false;
330
- BatteryManager: false;
331
- BeforeUnloadEvent: false;
332
- BiquadFilterNode: false;
333
- Blob: false;
334
- BlobEvent: false;
335
- Bluetooth: false;
336
- BluetoothCharacteristicProperties: false;
337
- BluetoothDevice: false;
338
- BluetoothRemoteGATTCharacteristic: false;
339
- BluetoothRemoteGATTDescriptor: false;
340
- BluetoothRemoteGATTServer: false;
341
- BluetoothRemoteGATTService: false;
342
- BluetoothUUID: false;
343
- blur: false;
344
- BroadcastChannel: false;
345
- BrowserCaptureMediaStreamTrack: false;
346
- btoa: false;
347
- ByteLengthQueuingStrategy: false;
348
- Cache: false;
349
- caches: false;
350
- CacheStorage: false;
351
- cancelAnimationFrame: false;
352
- cancelIdleCallback: false;
353
- CanvasCaptureMediaStream: false;
354
- CanvasCaptureMediaStreamTrack: false;
355
- CanvasGradient: false;
356
- CanvasPattern: false;
357
- CanvasRenderingContext2D: false;
358
- CaptureController: false;
359
- CaretPosition: false;
360
- CDATASection: false;
361
- ChannelMergerNode: false;
362
- ChannelSplitterNode: false;
363
- ChapterInformation: false;
364
- CharacterBoundsUpdateEvent: false;
365
- CharacterData: false;
366
- clearInterval: false;
367
- clearTimeout: false;
368
- clientInformation: false;
369
- Clipboard: false;
370
- ClipboardEvent: false;
371
- ClipboardItem: false;
372
- close: false;
373
- closed: false;
374
- CloseEvent: false;
375
- CloseWatcher: false;
376
- Comment: false;
377
- CompositionEvent: false;
378
- CompressionStream: false;
379
- confirm: false;
380
- console: false;
381
- ConstantSourceNode: false;
382
- ContentVisibilityAutoStateChangeEvent: false;
383
- ConvolverNode: false;
384
- CookieChangeEvent: false;
385
- CookieDeprecationLabel: false;
386
- cookieStore: false;
387
- CookieStore: false;
388
- CookieStoreManager: false;
389
- CountQueuingStrategy: false;
390
- createImageBitmap: false;
391
- Credential: false;
392
- credentialless: false;
393
- CredentialsContainer: false;
394
- CropTarget: false;
395
- crossOriginIsolated: false;
396
- crypto: false;
397
- Crypto: false;
398
- CryptoKey: false;
399
- CSS: false;
400
- CSSAnimation: false;
401
- CSSConditionRule: false;
402
- CSSContainerRule: false;
403
- CSSCounterStyleRule: false;
404
- CSSFontFaceRule: false;
405
- CSSFontFeatureValuesRule: false;
406
- CSSFontPaletteValuesRule: false;
407
- CSSGroupingRule: false;
408
- CSSImageValue: false;
409
- CSSImportRule: false;
410
- CSSKeyframeRule: false;
411
- CSSKeyframesRule: false;
412
- CSSKeywordValue: false;
413
- CSSLayerBlockRule: false;
414
- CSSLayerStatementRule: false;
415
- CSSMarginRule: false;
416
- CSSMathClamp: false;
417
- CSSMathInvert: false;
418
- CSSMathMax: false;
419
- CSSMathMin: false;
420
- CSSMathNegate: false;
421
- CSSMathProduct: false;
422
- CSSMathSum: false;
423
- CSSMathValue: false;
424
- CSSMatrixComponent: false;
425
- CSSMediaRule: false;
426
- CSSNamespaceRule: false;
427
- CSSNestedDeclarations: false;
428
- CSSNumericArray: false;
429
- CSSNumericValue: false;
430
- CSSPageDescriptors: false;
431
- CSSPageRule: false;
432
- CSSPerspective: false;
433
- CSSPositionTryDescriptors: false;
434
- CSSPositionTryRule: false;
435
- CSSPositionValue: false;
436
- CSSPropertyRule: false;
437
- CSSRotate: false;
438
- CSSRule: false;
439
- CSSRuleList: false;
440
- CSSScale: false;
441
- CSSScopeRule: false;
442
- CSSSkew: false;
443
- CSSSkewX: false;
444
- CSSSkewY: false;
445
- CSSStartingStyleRule: false;
446
- CSSStyleDeclaration: false;
447
- CSSStyleRule: false;
448
- CSSStyleSheet: false;
449
- CSSStyleValue: false;
450
- CSSSupportsRule: false;
451
- CSSTransformComponent: false;
452
- CSSTransformValue: false;
453
- CSSTransition: false;
454
- CSSTranslate: false;
455
- CSSUnitValue: false;
456
- CSSUnparsedValue: false;
457
- CSSVariableReferenceValue: false;
458
- CSSViewTransitionRule: false;
459
- currentFrame: false;
460
- currentTime: false;
461
- CustomElementRegistry: false;
462
- customElements: false;
463
- CustomEvent: false;
464
- CustomStateSet: false;
465
- DataTransfer: false;
466
- DataTransferItem: false;
467
- DataTransferItemList: false;
468
- DecompressionStream: false;
469
- DelayNode: false;
470
- DelegatedInkTrailPresenter: false;
471
- DeviceMotionEvent: false;
472
- DeviceMotionEventAcceleration: false;
473
- DeviceMotionEventRotationRate: false;
474
- DeviceOrientationEvent: false;
475
- devicePixelRatio: false;
476
- dispatchEvent: false;
477
- document: false;
478
- Document: false;
479
- DocumentFragment: false;
480
- documentPictureInPicture: false;
481
- DocumentPictureInPicture: false;
482
- DocumentPictureInPictureEvent: false;
483
- DocumentTimeline: false;
484
- DocumentType: false;
485
- DOMError: false;
486
- DOMException: false;
487
- DOMImplementation: false;
488
- DOMMatrix: false;
489
- DOMMatrixReadOnly: false;
490
- DOMParser: false;
491
- DOMPoint: false;
492
- DOMPointReadOnly: false;
493
- DOMQuad: false;
494
- DOMRect: false;
495
- DOMRectList: false;
496
- DOMRectReadOnly: false;
497
- DOMStringList: false;
498
- DOMStringMap: false;
499
- DOMTokenList: false;
500
- DragEvent: false;
501
- DynamicsCompressorNode: false;
502
- EditContext: false;
503
- Element: false;
504
- ElementInternals: false;
505
- EncodedAudioChunk: false;
506
- EncodedVideoChunk: false;
507
- ErrorEvent: false;
508
- event: false;
509
- Event: false;
510
- EventCounts: false;
511
- EventSource: false;
512
- EventTarget: false;
513
- external: false;
514
- External: false;
515
- EyeDropper: false;
516
- FeaturePolicy: false;
517
- FederatedCredential: false;
518
- fence: false;
519
- Fence: false;
520
- FencedFrameConfig: false;
521
- fetch: false;
522
- fetchLater: false;
523
- FetchLaterResult: false;
524
- File: false;
525
- FileList: false;
526
- FileReader: false;
527
- FileSystem: false;
528
- FileSystemDirectoryEntry: false;
529
- FileSystemDirectoryHandle: false;
530
- FileSystemDirectoryReader: false;
531
- FileSystemEntry: false;
532
- FileSystemFileEntry: false;
533
- FileSystemFileHandle: false;
534
- FileSystemHandle: false;
535
- FileSystemWritableFileStream: false;
536
- find: false;
537
- Float16Array: false;
538
- focus: false;
539
- FocusEvent: false;
540
- FontData: false;
541
- FontFace: false;
542
- FontFaceSet: false;
543
- FontFaceSetLoadEvent: false;
544
- FormData: false;
545
- FormDataEvent: false;
546
- FragmentDirective: false;
547
- frameElement: false;
548
- frames: false;
549
- GainNode: false;
550
- Gamepad: false;
551
- GamepadAxisMoveEvent: false;
552
- GamepadButton: false;
553
- GamepadButtonEvent: false;
554
- GamepadEvent: false;
555
- GamepadHapticActuator: false;
556
- GamepadPose: false;
557
- Geolocation: false;
558
- GeolocationCoordinates: false;
559
- GeolocationPosition: false;
560
- GeolocationPositionError: false;
561
- getComputedStyle: false;
562
- getScreenDetails: false;
563
- getSelection: false;
564
- GPU: false;
565
- GPUAdapter: false;
566
- GPUAdapterInfo: false;
567
- GPUBindGroup: false;
568
- GPUBindGroupLayout: false;
569
- GPUBuffer: false;
570
- GPUBufferUsage: false;
571
- GPUCanvasContext: false;
572
- GPUColorWrite: false;
573
- GPUCommandBuffer: false;
574
- GPUCommandEncoder: false;
575
- GPUCompilationInfo: false;
576
- GPUCompilationMessage: false;
577
- GPUComputePassEncoder: false;
578
- GPUComputePipeline: false;
579
- GPUDevice: false;
580
- GPUDeviceLostInfo: false;
581
- GPUError: false;
582
- GPUExternalTexture: false;
583
- GPUInternalError: false;
584
- GPUMapMode: false;
585
- GPUOutOfMemoryError: false;
586
- GPUPipelineError: false;
587
- GPUPipelineLayout: false;
588
- GPUQuerySet: false;
589
- GPUQueue: false;
590
- GPURenderBundle: false;
591
- GPURenderBundleEncoder: false;
592
- GPURenderPassEncoder: false;
593
- GPURenderPipeline: false;
594
- GPUSampler: false;
595
- GPUShaderModule: false;
596
- GPUShaderStage: false;
597
- GPUSupportedFeatures: false;
598
- GPUSupportedLimits: false;
599
- GPUTexture: false;
600
- GPUTextureUsage: false;
601
- GPUTextureView: false;
602
- GPUUncapturedErrorEvent: false;
603
- GPUValidationError: false;
604
- GravitySensor: false;
605
- Gyroscope: false;
606
- HashChangeEvent: false;
607
- Headers: false;
608
- HID: false;
609
- HIDConnectionEvent: false;
610
- HIDDevice: false;
611
- HIDInputReportEvent: false;
612
- Highlight: false;
613
- HighlightRegistry: false;
614
- history: false;
615
- History: false;
616
- HTMLAllCollection: false;
617
- HTMLAnchorElement: false;
618
- HTMLAreaElement: false;
619
- HTMLAudioElement: false;
620
- HTMLBaseElement: false;
621
- HTMLBodyElement: false;
622
- HTMLBRElement: false;
623
- HTMLButtonElement: false;
624
- HTMLCanvasElement: false;
625
- HTMLCollection: false;
626
- HTMLDataElement: false;
627
- HTMLDataListElement: false;
628
- HTMLDetailsElement: false;
629
- HTMLDialogElement: false;
630
- HTMLDirectoryElement: false;
631
- HTMLDivElement: false;
632
- HTMLDListElement: false;
633
- HTMLDocument: false;
634
- HTMLElement: false;
635
- HTMLEmbedElement: false;
636
- HTMLFencedFrameElement: false;
637
- HTMLFieldSetElement: false;
638
- HTMLFontElement: false;
639
- HTMLFormControlsCollection: false;
640
- HTMLFormElement: false;
641
- HTMLFrameElement: false;
642
- HTMLFrameSetElement: false;
643
- HTMLHeadElement: false;
644
- HTMLHeadingElement: false;
645
- HTMLHRElement: false;
646
- HTMLHtmlElement: false;
647
- HTMLIFrameElement: false;
648
- HTMLImageElement: false;
649
- HTMLInputElement: false;
650
- HTMLLabelElement: false;
651
- HTMLLegendElement: false;
652
- HTMLLIElement: false;
653
- HTMLLinkElement: false;
654
- HTMLMapElement: false;
655
- HTMLMarqueeElement: false;
656
- HTMLMediaElement: false;
657
- HTMLMenuElement: false;
658
- HTMLMetaElement: false;
659
- HTMLMeterElement: false;
660
- HTMLModElement: false;
661
- HTMLObjectElement: false;
662
- HTMLOListElement: false;
663
- HTMLOptGroupElement: false;
664
- HTMLOptionElement: false;
665
- HTMLOptionsCollection: false;
666
- HTMLOutputElement: false;
667
- HTMLParagraphElement: false;
668
- HTMLParamElement: false;
669
- HTMLPictureElement: false;
670
- HTMLPreElement: false;
671
- HTMLProgressElement: false;
672
- HTMLQuoteElement: false;
673
- HTMLScriptElement: false;
674
- HTMLSelectElement: false;
675
- HTMLSlotElement: false;
676
- HTMLSourceElement: false;
677
- HTMLSpanElement: false;
678
- HTMLStyleElement: false;
679
- HTMLTableCaptionElement: false;
680
- HTMLTableCellElement: false;
681
- HTMLTableColElement: false;
682
- HTMLTableElement: false;
683
- HTMLTableRowElement: false;
684
- HTMLTableSectionElement: false;
685
- HTMLTemplateElement: false;
686
- HTMLTextAreaElement: false;
687
- HTMLTimeElement: false;
688
- HTMLTitleElement: false;
689
- HTMLTrackElement: false;
690
- HTMLUListElement: false;
691
- HTMLUnknownElement: false;
692
- HTMLVideoElement: false;
693
- IDBCursor: false;
694
- IDBCursorWithValue: false;
695
- IDBDatabase: false;
696
- IDBFactory: false;
697
- IDBIndex: false;
698
- IDBKeyRange: false;
699
- IDBObjectStore: false;
700
- IDBOpenDBRequest: false;
701
- IDBRequest: false;
702
- IDBTransaction: false;
703
- IDBVersionChangeEvent: false;
704
- IdentityCredential: false;
705
- IdentityCredentialError: false;
706
- IdentityProvider: false;
707
- IdleDeadline: false;
708
- IdleDetector: false;
709
- IIRFilterNode: false;
710
- Image: false;
711
- ImageBitmap: false;
712
- ImageBitmapRenderingContext: false;
713
- ImageCapture: false;
714
- ImageData: false;
715
- ImageDecoder: false;
716
- ImageTrack: false;
717
- ImageTrackList: false;
718
- indexedDB: false;
719
- Ink: false;
720
- innerHeight: false;
721
- innerWidth: false;
722
- InputDeviceCapabilities: false;
723
- InputDeviceInfo: false;
724
- InputEvent: false;
725
- IntersectionObserver: false;
726
- IntersectionObserverEntry: false;
727
- isSecureContext: false;
728
- Keyboard: false;
729
- KeyboardEvent: false;
730
- KeyboardLayoutMap: false;
731
- KeyframeEffect: false;
732
- LargestContentfulPaint: false;
733
- LaunchParams: false;
734
- launchQueue: false;
735
- LaunchQueue: false;
736
- LayoutShift: false;
737
- LayoutShiftAttribution: false;
738
- length: false;
739
- LinearAccelerationSensor: false;
740
- localStorage: false;
741
- location: true;
742
- Location: false;
743
- locationbar: false;
744
- Lock: false;
745
- LockManager: false;
746
- matchMedia: false;
747
- MathMLElement: false;
748
- MediaCapabilities: false;
749
- MediaCapabilitiesInfo: false;
750
- MediaDeviceInfo: false;
751
- MediaDevices: false;
752
- MediaElementAudioSourceNode: false;
753
- MediaEncryptedEvent: false;
754
- MediaError: false;
755
- MediaKeyError: false;
756
- MediaKeyMessageEvent: false;
757
- MediaKeys: false;
758
- MediaKeySession: false;
759
- MediaKeyStatusMap: false;
760
- MediaKeySystemAccess: false;
761
- MediaList: false;
762
- MediaMetadata: false;
763
- MediaQueryList: false;
764
- MediaQueryListEvent: false;
765
- MediaRecorder: false;
766
- MediaRecorderErrorEvent: false;
767
- MediaSession: false;
768
- MediaSource: false;
769
- MediaSourceHandle: false;
770
- MediaStream: false;
771
- MediaStreamAudioDestinationNode: false;
772
- MediaStreamAudioSourceNode: false;
773
- MediaStreamEvent: false;
774
- MediaStreamTrack: false;
775
- MediaStreamTrackAudioSourceNode: false;
776
- MediaStreamTrackAudioStats: false;
777
- MediaStreamTrackEvent: false;
778
- MediaStreamTrackGenerator: false;
779
- MediaStreamTrackProcessor: false;
780
- MediaStreamTrackVideoStats: false;
781
- menubar: false;
782
- MessageChannel: false;
783
- MessageEvent: false;
784
- MessagePort: false;
785
- MIDIAccess: false;
786
- MIDIConnectionEvent: false;
787
- MIDIInput: false;
788
- MIDIInputMap: false;
789
- MIDIMessageEvent: false;
790
- MIDIOutput: false;
791
- MIDIOutputMap: false;
792
- MIDIPort: false;
793
- MimeType: false;
794
- MimeTypeArray: false;
795
- model: false;
796
- ModelGenericSession: false;
797
- ModelManager: false;
798
- MouseEvent: false;
799
- moveBy: false;
800
- moveTo: false;
801
- MutationEvent: false;
802
- MutationObserver: false;
803
- MutationRecord: false;
804
- name: false;
805
- NamedNodeMap: false;
806
- NavigateEvent: false;
807
- navigation: false;
808
- Navigation: false;
809
- NavigationActivation: false;
810
- NavigationCurrentEntryChangeEvent: false;
811
- NavigationDestination: false;
812
- NavigationHistoryEntry: false;
813
- NavigationPreloadManager: false;
814
- NavigationTransition: false;
815
- navigator: false;
816
- Navigator: false;
817
- NavigatorLogin: false;
818
- NavigatorManagedData: false;
819
- NavigatorUAData: false;
820
- NetworkInformation: false;
821
- Node: false;
822
- NodeFilter: false;
823
- NodeIterator: false;
824
- NodeList: false;
825
- Notification: false;
826
- NotifyPaintEvent: false;
827
- NotRestoredReasonDetails: false;
828
- NotRestoredReasons: false;
829
- OfflineAudioCompletionEvent: false;
830
- OfflineAudioContext: false;
831
- offscreenBuffering: false;
832
- OffscreenCanvas: false;
833
- OffscreenCanvasRenderingContext2D: false;
834
- onabort: true;
835
- onafterprint: true;
836
- onanimationcancel: true;
837
- onanimationend: true;
838
- onanimationiteration: true;
839
- onanimationstart: true;
840
- onappinstalled: true;
841
- onauxclick: true;
842
- onbeforeinput: true;
843
- onbeforeinstallprompt: true;
844
- onbeforematch: true;
845
- onbeforeprint: true;
846
- onbeforetoggle: true;
847
- onbeforeunload: true;
848
- onbeforexrselect: true;
849
- onblur: true;
850
- oncancel: true;
851
- oncanplay: true;
852
- oncanplaythrough: true;
853
- onchange: true;
854
- onclick: true;
855
- onclose: true;
856
- oncontentvisibilityautostatechange: true;
857
- oncontextlost: true;
858
- oncontextmenu: true;
859
- oncontextrestored: true;
860
- oncopy: true;
861
- oncuechange: true;
862
- oncut: true;
863
- ondblclick: true;
864
- ondevicemotion: true;
865
- ondeviceorientation: true;
866
- ondeviceorientationabsolute: true;
867
- ondrag: true;
868
- ondragend: true;
869
- ondragenter: true;
870
- ondragleave: true;
871
- ondragover: true;
872
- ondragstart: true;
873
- ondrop: true;
874
- ondurationchange: true;
875
- onemptied: true;
876
- onended: true;
877
- onerror: true;
878
- onfocus: true;
879
- onformdata: true;
880
- ongamepadconnected: true;
881
- ongamepaddisconnected: true;
882
- ongotpointercapture: true;
883
- onhashchange: true;
884
- oninput: true;
885
- oninvalid: true;
886
- onkeydown: true;
887
- onkeypress: true;
888
- onkeyup: true;
889
- onlanguagechange: true;
890
- onload: true;
891
- onloadeddata: true;
892
- onloadedmetadata: true;
893
- onloadstart: true;
894
- onlostpointercapture: true;
895
- onmessage: true;
896
- onmessageerror: true;
897
- onmousedown: true;
898
- onmouseenter: true;
899
- onmouseleave: true;
900
- onmousemove: true;
901
- onmouseout: true;
902
- onmouseover: true;
903
- onmouseup: true;
904
- onmousewheel: true;
905
- onoffline: true;
906
- ononline: true;
907
- onpagehide: true;
908
- onpagereveal: true;
909
- onpageshow: true;
910
- onpageswap: true;
911
- onpaste: true;
912
- onpause: true;
913
- onplay: true;
914
- onplaying: true;
915
- onpointercancel: true;
916
- onpointerdown: true;
917
- onpointerenter: true;
918
- onpointerleave: true;
919
- onpointermove: true;
920
- onpointerout: true;
921
- onpointerover: true;
922
- onpointerrawupdate: true;
923
- onpointerup: true;
924
- onpopstate: true;
925
- onprogress: true;
926
- onratechange: true;
927
- onrejectionhandled: true;
928
- onreset: true;
929
- onresize: true;
930
- onscroll: true;
931
- onscrollend: true;
932
- onscrollsnapchange: true;
933
- onscrollsnapchanging: true;
934
- onsearch: true;
935
- onsecuritypolicyviolation: true;
936
- onseeked: true;
937
- onseeking: true;
938
- onselect: true;
939
- onselectionchange: true;
940
- onselectstart: true;
941
- onslotchange: true;
942
- onstalled: true;
943
- onstorage: true;
944
- onsubmit: true;
945
- onsuspend: true;
946
- ontimeupdate: true;
947
- ontoggle: true;
948
- ontransitioncancel: true;
949
- ontransitionend: true;
950
- ontransitionrun: true;
951
- ontransitionstart: true;
952
- onunhandledrejection: true;
953
- onunload: true;
954
- onvolumechange: true;
955
- onwaiting: true;
956
- onwheel: true;
957
- open: false;
958
- opener: false;
959
- Option: false;
960
- OrientationSensor: false;
961
- origin: false;
962
- originAgentCluster: false;
963
- OscillatorNode: false;
964
- OTPCredential: false;
965
- outerHeight: false;
966
- outerWidth: false;
967
- OverconstrainedError: false;
968
- PageRevealEvent: false;
969
- PageSwapEvent: false;
970
- PageTransitionEvent: false;
971
- pageXOffset: false;
972
- pageYOffset: false;
973
- PannerNode: false;
974
- parent: false;
975
- PasswordCredential: false;
976
- Path2D: false;
977
- PaymentAddress: false;
978
- PaymentManager: false;
979
- PaymentMethodChangeEvent: false;
980
- PaymentRequest: false;
981
- PaymentRequestUpdateEvent: false;
982
- PaymentResponse: false;
983
- performance: false;
984
- Performance: false;
985
- PerformanceElementTiming: false;
986
- PerformanceEntry: false;
987
- PerformanceEventTiming: false;
988
- PerformanceLongAnimationFrameTiming: false;
989
- PerformanceLongTaskTiming: false;
990
- PerformanceMark: false;
991
- PerformanceMeasure: false;
992
- PerformanceNavigation: false;
993
- PerformanceNavigationTiming: false;
994
- PerformanceObserver: false;
995
- PerformanceObserverEntryList: false;
996
- PerformancePaintTiming: false;
997
- PerformanceResourceTiming: false;
998
- PerformanceScriptTiming: false;
999
- PerformanceServerTiming: false;
1000
- PerformanceTiming: false;
1001
- PeriodicSyncManager: false;
1002
- PeriodicWave: false;
1003
- Permissions: false;
1004
- PermissionStatus: false;
1005
- PERSISTENT: false;
1006
- personalbar: false;
1007
- PictureInPictureEvent: false;
1008
- PictureInPictureWindow: false;
1009
- Plugin: false;
1010
- PluginArray: false;
1011
- PointerEvent: false;
1012
- PopStateEvent: false;
1013
- postMessage: false;
1014
- Presentation: false;
1015
- PresentationAvailability: false;
1016
- PresentationConnection: false;
1017
- PresentationConnectionAvailableEvent: false;
1018
- PresentationConnectionCloseEvent: false;
1019
- PresentationConnectionList: false;
1020
- PresentationReceiver: false;
1021
- PresentationRequest: false;
1022
- PressureObserver: false;
1023
- PressureRecord: false;
1024
- print: false;
1025
- ProcessingInstruction: false;
1026
- Profiler: false;
1027
- ProgressEvent: false;
1028
- PromiseRejectionEvent: false;
1029
- prompt: false;
1030
- ProtectedAudience: false;
1031
- PublicKeyCredential: false;
1032
- PushManager: false;
1033
- PushSubscription: false;
1034
- PushSubscriptionOptions: false;
1035
- queryLocalFonts: false;
1036
- queueMicrotask: false;
1037
- RadioNodeList: false;
1038
- Range: false;
1039
- ReadableByteStreamController: false;
1040
- ReadableStream: false;
1041
- ReadableStreamBYOBReader: false;
1042
- ReadableStreamBYOBRequest: false;
1043
- ReadableStreamDefaultController: false;
1044
- ReadableStreamDefaultReader: false;
1045
- registerProcessor: false;
1046
- RelativeOrientationSensor: false;
1047
- RemotePlayback: false;
1048
- removeEventListener: false;
1049
- reportError: false;
1050
- ReportingObserver: false;
1051
- Request: false;
1052
- requestAnimationFrame: false;
1053
- requestIdleCallback: false;
1054
- resizeBy: false;
1055
- ResizeObserver: false;
1056
- ResizeObserverEntry: false;
1057
- ResizeObserverSize: false;
1058
- resizeTo: false;
1059
- Response: false;
1060
- RTCCertificate: false;
1061
- RTCDataChannel: false;
1062
- RTCDataChannelEvent: false;
1063
- RTCDtlsTransport: false;
1064
- RTCDTMFSender: false;
1065
- RTCDTMFToneChangeEvent: false;
1066
- RTCEncodedAudioFrame: false;
1067
- RTCEncodedVideoFrame: false;
1068
- RTCError: false;
1069
- RTCErrorEvent: false;
1070
- RTCIceCandidate: false;
1071
- RTCIceTransport: false;
1072
- RTCPeerConnection: false;
1073
- RTCPeerConnectionIceErrorEvent: false;
1074
- RTCPeerConnectionIceEvent: false;
1075
- RTCRtpReceiver: false;
1076
- RTCRtpScriptTransform: false;
1077
- RTCRtpSender: false;
1078
- RTCRtpTransceiver: false;
1079
- RTCSctpTransport: false;
1080
- RTCSessionDescription: false;
1081
- RTCStatsReport: false;
1082
- RTCTrackEvent: false;
1083
- sampleRate: false;
1084
- scheduler: false;
1085
- Scheduler: false;
1086
- Scheduling: false;
1087
- screen: false;
1088
- Screen: false;
1089
- ScreenDetailed: false;
1090
- ScreenDetails: false;
1091
- screenLeft: false;
1092
- ScreenOrientation: false;
1093
- screenTop: false;
1094
- screenX: false;
1095
- screenY: false;
1096
- ScriptProcessorNode: false;
1097
- scroll: false;
1098
- scrollbars: false;
1099
- scrollBy: false;
1100
- ScrollTimeline: false;
1101
- scrollTo: false;
1102
- scrollX: false;
1103
- scrollY: false;
1104
- SecurityPolicyViolationEvent: false;
1105
- Selection: false;
1106
- self: false;
1107
- Sensor: false;
1108
- SensorErrorEvent: false;
1109
- Serial: false;
1110
- SerialPort: false;
1111
- ServiceWorker: false;
1112
- ServiceWorkerContainer: false;
1113
- ServiceWorkerRegistration: false;
1114
- sessionStorage: false;
1115
- setInterval: false;
1116
- setTimeout: false;
1117
- ShadowRoot: false;
1118
- sharedStorage: false;
1119
- SharedStorage: false;
1120
- SharedStorageWorklet: false;
1121
- SharedWorker: false;
1122
- showDirectoryPicker: false;
1123
- showOpenFilePicker: false;
1124
- showSaveFilePicker: false;
1125
- SnapEvent: false;
1126
- SourceBuffer: false;
1127
- SourceBufferList: false;
1128
- speechSynthesis: false;
1129
- SpeechSynthesis: false;
1130
- SpeechSynthesisErrorEvent: false;
1131
- SpeechSynthesisEvent: false;
1132
- SpeechSynthesisUtterance: false;
1133
- SpeechSynthesisVoice: false;
1134
- StaticRange: false;
1135
- status: false;
1136
- statusbar: false;
1137
- StereoPannerNode: false;
1138
- stop: false;
1139
- Storage: false;
1140
- StorageBucket: false;
1141
- StorageBucketManager: false;
1142
- StorageEvent: false;
1143
- StorageManager: false;
1144
- structuredClone: false;
1145
- styleMedia: false;
1146
- StylePropertyMap: false;
1147
- StylePropertyMapReadOnly: false;
1148
- StyleSheet: false;
1149
- StyleSheetList: false;
1150
- SubmitEvent: false;
1151
- SubtleCrypto: false;
1152
- SVGAElement: false;
1153
- SVGAngle: false;
1154
- SVGAnimatedAngle: false;
1155
- SVGAnimatedBoolean: false;
1156
- SVGAnimatedEnumeration: false;
1157
- SVGAnimatedInteger: false;
1158
- SVGAnimatedLength: false;
1159
- SVGAnimatedLengthList: false;
1160
- SVGAnimatedNumber: false;
1161
- SVGAnimatedNumberList: false;
1162
- SVGAnimatedPreserveAspectRatio: false;
1163
- SVGAnimatedRect: false;
1164
- SVGAnimatedString: false;
1165
- SVGAnimatedTransformList: false;
1166
- SVGAnimateElement: false;
1167
- SVGAnimateMotionElement: false;
1168
- SVGAnimateTransformElement: false;
1169
- SVGAnimationElement: false;
1170
- SVGCircleElement: false;
1171
- SVGClipPathElement: false;
1172
- SVGComponentTransferFunctionElement: false;
1173
- SVGDefsElement: false;
1174
- SVGDescElement: false;
1175
- SVGElement: false;
1176
- SVGEllipseElement: false;
1177
- SVGFEBlendElement: false;
1178
- SVGFEColorMatrixElement: false;
1179
- SVGFEComponentTransferElement: false;
1180
- SVGFECompositeElement: false;
1181
- SVGFEConvolveMatrixElement: false;
1182
- SVGFEDiffuseLightingElement: false;
1183
- SVGFEDisplacementMapElement: false;
1184
- SVGFEDistantLightElement: false;
1185
- SVGFEDropShadowElement: false;
1186
- SVGFEFloodElement: false;
1187
- SVGFEFuncAElement: false;
1188
- SVGFEFuncBElement: false;
1189
- SVGFEFuncGElement: false;
1190
- SVGFEFuncRElement: false;
1191
- SVGFEGaussianBlurElement: false;
1192
- SVGFEImageElement: false;
1193
- SVGFEMergeElement: false;
1194
- SVGFEMergeNodeElement: false;
1195
- SVGFEMorphologyElement: false;
1196
- SVGFEOffsetElement: false;
1197
- SVGFEPointLightElement: false;
1198
- SVGFESpecularLightingElement: false;
1199
- SVGFESpotLightElement: false;
1200
- SVGFETileElement: false;
1201
- SVGFETurbulenceElement: false;
1202
- SVGFilterElement: false;
1203
- SVGForeignObjectElement: false;
1204
- SVGGElement: false;
1205
- SVGGeometryElement: false;
1206
- SVGGradientElement: false;
1207
- SVGGraphicsElement: false;
1208
- SVGImageElement: false;
1209
- SVGLength: false;
1210
- SVGLengthList: false;
1211
- SVGLinearGradientElement: false;
1212
- SVGLineElement: false;
1213
- SVGMarkerElement: false;
1214
- SVGMaskElement: false;
1215
- SVGMatrix: false;
1216
- SVGMetadataElement: false;
1217
- SVGMPathElement: false;
1218
- SVGNumber: false;
1219
- SVGNumberList: false;
1220
- SVGPathElement: false;
1221
- SVGPatternElement: false;
1222
- SVGPoint: false;
1223
- SVGPointList: false;
1224
- SVGPolygonElement: false;
1225
- SVGPolylineElement: false;
1226
- SVGPreserveAspectRatio: false;
1227
- SVGRadialGradientElement: false;
1228
- SVGRect: false;
1229
- SVGRectElement: false;
1230
- SVGScriptElement: false;
1231
- SVGSetElement: false;
1232
- SVGStopElement: false;
1233
- SVGStringList: false;
1234
- SVGStyleElement: false;
1235
- SVGSVGElement: false;
1236
- SVGSwitchElement: false;
1237
- SVGSymbolElement: false;
1238
- SVGTextContentElement: false;
1239
- SVGTextElement: false;
1240
- SVGTextPathElement: false;
1241
- SVGTextPositioningElement: false;
1242
- SVGTitleElement: false;
1243
- SVGTransform: false;
1244
- SVGTransformList: false;
1245
- SVGTSpanElement: false;
1246
- SVGUnitTypes: false;
1247
- SVGUseElement: false;
1248
- SVGViewElement: false;
1249
- SyncManager: false;
1250
- TaskAttributionTiming: false;
1251
- TaskController: false;
1252
- TaskPriorityChangeEvent: false;
1253
- TaskSignal: false;
1254
- TEMPORARY: false;
1255
- Text: false;
1256
- TextDecoder: false;
1257
- TextDecoderStream: false;
1258
- TextEncoder: false;
1259
- TextEncoderStream: false;
1260
- TextEvent: false;
1261
- TextFormat: false;
1262
- TextFormatUpdateEvent: false;
1263
- TextMetrics: false;
1264
- TextTrack: false;
1265
- TextTrackCue: false;
1266
- TextTrackCueList: false;
1267
- TextTrackList: false;
1268
- TextUpdateEvent: false;
1269
- TimeEvent: false;
1270
- TimeRanges: false;
1271
- ToggleEvent: false;
1272
- toolbar: false;
1273
- top: false;
1274
- Touch: false;
1275
- TouchEvent: false;
1276
- TouchList: false;
1277
- TrackEvent: false;
1278
- TransformStream: false;
1279
- TransformStreamDefaultController: false;
1280
- TransitionEvent: false;
1281
- TreeWalker: false;
1282
- TrustedHTML: false;
1283
- TrustedScript: false;
1284
- TrustedScriptURL: false;
1285
- TrustedTypePolicy: false;
1286
- TrustedTypePolicyFactory: false;
1287
- trustedTypes: false;
1288
- UIEvent: false;
1289
- URL: false;
1290
- URLPattern: false;
1291
- URLSearchParams: false;
1292
- USB: false;
1293
- USBAlternateInterface: false;
1294
- USBConfiguration: false;
1295
- USBConnectionEvent: false;
1296
- USBDevice: false;
1297
- USBEndpoint: false;
1298
- USBInterface: false;
1299
- USBInTransferResult: false;
1300
- USBIsochronousInTransferPacket: false;
1301
- USBIsochronousInTransferResult: false;
1302
- USBIsochronousOutTransferPacket: false;
1303
- USBIsochronousOutTransferResult: false;
1304
- USBOutTransferResult: false;
1305
- UserActivation: false;
1306
- ValidityState: false;
1307
- VideoColorSpace: false;
1308
- VideoDecoder: false;
1309
- VideoEncoder: false;
1310
- VideoFrame: false;
1311
- VideoPlaybackQuality: false;
1312
- ViewTimeline: false;
1313
- ViewTransition: false;
1314
- ViewTransitionTypeSet: false;
1315
- VirtualKeyboard: false;
1316
- VirtualKeyboardGeometryChangeEvent: false;
1317
- VisibilityStateEntry: false;
1318
- visualViewport: false;
1319
- VisualViewport: false;
1320
- VTTCue: false;
1321
- VTTRegion: false;
1322
- WakeLock: false;
1323
- WakeLockSentinel: false;
1324
- WaveShaperNode: false;
1325
- WebAssembly: false;
1326
- WebGL2RenderingContext: false;
1327
- WebGLActiveInfo: false;
1328
- WebGLBuffer: false;
1329
- WebGLContextEvent: false;
1330
- WebGLFramebuffer: false;
1331
- WebGLObject: false;
1332
- WebGLProgram: false;
1333
- WebGLQuery: false;
1334
- WebGLRenderbuffer: false;
1335
- WebGLRenderingContext: false;
1336
- WebGLSampler: false;
1337
- WebGLShader: false;
1338
- WebGLShaderPrecisionFormat: false;
1339
- WebGLSync: false;
1340
- WebGLTexture: false;
1341
- WebGLTransformFeedback: false;
1342
- WebGLUniformLocation: false;
1343
- WebGLVertexArrayObject: false;
1344
- WebSocket: false;
1345
- WebSocketError: false;
1346
- WebSocketStream: false;
1347
- WebTransport: false;
1348
- WebTransportBidirectionalStream: false;
1349
- WebTransportDatagramDuplexStream: false;
1350
- WebTransportError: false;
1351
- WebTransportReceiveStream: false;
1352
- WebTransportSendStream: false;
1353
- WGSLLanguageFeatures: false;
1354
- WheelEvent: false;
1355
- window: false;
1356
- Window: false;
1357
- WindowControlsOverlay: false;
1358
- WindowControlsOverlayGeometryChangeEvent: false;
1359
- Worker: false;
1360
- Worklet: false;
1361
- WorkletGlobalScope: false;
1362
- WritableStream: false;
1363
- WritableStreamDefaultController: false;
1364
- WritableStreamDefaultWriter: false;
1365
- XMLDocument: false;
1366
- XMLHttpRequest: false;
1367
- XMLHttpRequestEventTarget: false;
1368
- XMLHttpRequestUpload: false;
1369
- XMLSerializer: false;
1370
- XPathEvaluator: false;
1371
- XPathExpression: false;
1372
- XPathResult: false;
1373
- XRAnchor: false;
1374
- XRAnchorSet: false;
1375
- XRBoundedReferenceSpace: false;
1376
- XRCamera: false;
1377
- XRCPUDepthInformation: false;
1378
- XRDepthInformation: false;
1379
- XRDOMOverlayState: false;
1380
- XRFrame: false;
1381
- XRHand: false;
1382
- XRHitTestResult: false;
1383
- XRHitTestSource: false;
1384
- XRInputSource: false;
1385
- XRInputSourceArray: false;
1386
- XRInputSourceEvent: false;
1387
- XRInputSourcesChangeEvent: false;
1388
- XRJointPose: false;
1389
- XRJointSpace: false;
1390
- XRLayer: false;
1391
- XRLightEstimate: false;
1392
- XRLightProbe: false;
1393
- XRPose: false;
1394
- XRRay: false;
1395
- XRReferenceSpace: false;
1396
- XRReferenceSpaceEvent: false;
1397
- XRRenderState: false;
1398
- XRRigidTransform: false;
1399
- XRSession: false;
1400
- XRSessionEvent: false;
1401
- XRSpace: false;
1402
- XRSystem: false;
1403
- XRTransientInputHitTestResult: false;
1404
- XRTransientInputHitTestSource: false;
1405
- XRView: false;
1406
- XRViewerPose: false;
1407
- XRViewport: false;
1408
- XRWebGLBinding: false;
1409
- XRWebGLDepthInformation: false;
1410
- XRWebGLLayer: false;
1411
- XSLTProcessor: false;
1412
- };
1413
- };
1414
- settings: {
1415
- 'import/resolver': {
1416
- node: {
1417
- extensions: string[];
1418
- };
1419
- };
1420
- react: {
1421
- pragma: string;
1422
- version: string;
1423
- };
1424
- propWrapperFunctions: string[];
1425
- };
1426
- rules: {
1427
- 'no-underscore-dangle': ["error", {
1428
- allow: string[];
1429
- allowAfterThis: boolean;
1430
- allowAfterSuper: boolean;
1431
- enforceInMethodNames: boolean;
1432
- }];
1433
- 'jsx-quotes': ["error", string];
1434
- 'class-methods-use-this': ["error", {
1435
- exceptMethods: string[];
1436
- }];
1437
- 'react/checked-requires-onchange-or-readonly': ["off", {
1438
- ignoreMissingProperties: boolean;
1439
- ignoreExclusiveCheckedAttribute: boolean;
1440
- }];
1441
- 'react/display-name': ["off", {
1442
- ignoreTranspilerName: boolean;
1443
- }];
1444
- 'react/forbid-prop-types': ["error", {
1445
- forbid: string[];
1446
- checkContextTypes: boolean;
1447
- checkChildContextTypes: boolean;
1448
- }];
1449
- 'react/forbid-dom-props': ["off", {
1450
- forbid: never[];
1451
- }];
1452
- 'react/jsx-boolean-value': ["error", string, {
1453
- always: never[];
1454
- }];
1455
- 'react/jsx-closing-bracket-location': ["error", string];
1456
- 'react/jsx-closing-tag-location': "error";
1457
- 'react/jsx-curly-spacing': ["error", string, {
1458
- allowMultiline: boolean;
1459
- }];
1460
- 'react/jsx-handler-names': ["off", {
1461
- eventHandlerPrefix: string;
1462
- eventHandlerPropPrefix: string;
1463
- }];
1464
- 'react/jsx-indent-props': ["error", number];
1465
- 'react/jsx-key': "off";
1466
- 'react/jsx-max-props-per-line': ["error", {
1467
- maximum: number;
1468
- when: string;
1469
- }];
1470
- 'react/jsx-no-bind': ["error", {
1471
- ignoreRefs: boolean;
1472
- allowArrowFunctions: boolean;
1473
- allowFunctions: boolean;
1474
- allowBind: boolean;
1475
- ignoreDOMComponents: boolean;
1476
- }];
1477
- 'react/jsx-no-duplicate-props': ["error", {
1478
- ignoreCase: boolean;
1479
- }];
1480
- 'react/jsx-no-literals': ["off", {
1481
- noStrings: boolean;
1482
- }];
1483
- 'react/jsx-no-undef': "error";
1484
- 'react/jsx-pascal-case': ["error", {
1485
- allowAllCaps: boolean;
1486
- ignore: never[];
1487
- }];
1488
- 'react/sort-prop-types': ["off", {
1489
- ignoreCase: boolean;
1490
- callbacksLast: boolean;
1491
- requiredFirst: boolean;
1492
- sortShapeProp: boolean;
1493
- }];
1494
- 'react/jsx-sort-prop-types': "off";
1495
- 'react/jsx-sort-props': ["off", {
1496
- ignoreCase: boolean;
1497
- callbacksLast: boolean;
1498
- shorthandFirst: boolean;
1499
- shorthandLast: boolean;
1500
- noSortAlphabetically: boolean;
1501
- reservedFirst: boolean;
1502
- }];
1503
- 'react/jsx-sort-default-props': ["off", {
1504
- ignoreCase: boolean;
1505
- }];
1506
- 'react/jsx-uses-react': ["error"];
1507
- 'react/jsx-uses-vars': "error";
1508
- 'react/no-danger': "warn";
1509
- 'react/no-deprecated': ["error"];
1510
- 'react/no-did-mount-set-state': "off";
1511
- 'react/no-did-update-set-state': "error";
1512
- 'react/no-will-update-set-state': "error";
1513
- 'react/no-direct-mutation-state': "off";
1514
- 'react/no-is-mounted': "error";
1515
- 'react/no-multi-comp': "off";
1516
- 'react/no-set-state': "off";
1517
- 'react/no-string-refs': "error";
1518
- 'react/no-unknown-property': "error";
1519
- 'react/prefer-es6-class': ["error", string];
1520
- 'react/prefer-stateless-function': ["error", {
1521
- ignorePureComponents: boolean;
1522
- }];
1523
- 'react/prop-types': ["error", {
1524
- ignore: never[];
1525
- customValidators: never[];
1526
- skipUndeclared: boolean;
1527
- }];
1528
- 'react/react-in-jsx-scope': "error";
1529
- 'react/require-render-return': "error";
1530
- 'react/self-closing-comp': "error";
1531
- 'react/sort-comp': ["error", {
1532
- order: string[];
1533
- groups: {
1534
- lifecycle: string[];
1535
- rendering: string[];
1536
- };
1537
- }];
1538
- 'react/jsx-wrap-multilines': ["error", {
1539
- declaration: string;
1540
- assignment: string;
1541
- return: string;
1542
- arrow: string;
1543
- condition: string;
1544
- logical: string;
1545
- prop: string;
1546
- }];
1547
- 'react/jsx-first-prop-new-line': ["error", string];
1548
- 'react/jsx-equals-spacing': ["error", string];
1549
- 'react/jsx-indent': ["error", number];
1550
- 'react/jsx-no-target-blank': ["error", {
1551
- enforceDynamicLinks: string;
1552
- }];
1553
- 'react/jsx-filename-extension': ["error", {
1554
- extensions: string[];
1555
- }];
1556
- 'react/jsx-no-comment-textnodes': "error";
1557
- 'react/no-render-return-value': "error";
1558
- 'react/require-optimization': ["off", {
1559
- allowDecorators: never[];
1560
- }];
1561
- 'react/no-find-dom-node': "error";
1562
- 'react/forbid-component-props': ["off", {
1563
- forbid: never[];
1564
- }];
1565
- 'react/forbid-elements': ["off", {
1566
- forbid: never[];
1567
- }];
1568
- 'react/no-danger-with-children': "error";
1569
- 'react/no-unused-prop-types': ["error", {
1570
- customValidators: never[];
1571
- skipShapeProps: boolean;
1572
- }];
1573
- 'react/style-prop-object': "error";
1574
- 'react/no-unescaped-entities': "error";
1575
- 'react/no-children-prop': "error";
1576
- 'react/jsx-tag-spacing': ["error", {
1577
- closingSlash: string;
1578
- beforeSelfClosing: string;
1579
- afterOpening: string;
1580
- beforeClosing: string;
1581
- }];
1582
- 'react/jsx-space-before-closing': ["off", string];
1583
- 'react/no-array-index-key': "error";
1584
- 'react/require-default-props': ["error", {
1585
- forbidDefaultForRequired: boolean;
1586
- }];
1587
- 'react/forbid-foreign-prop-types': ["warn", {
1588
- allowInPropTypes: boolean;
1589
- }];
1590
- 'react/void-dom-elements-no-children': "error";
1591
- 'react/default-props-match-prop-types': ["error", {
1592
- allowRequiredDefaults: boolean;
1593
- }];
1594
- 'react/no-redundant-should-component-update': "error";
1595
- 'react/no-unused-state': "error";
1596
- 'react/boolean-prop-naming': ["off", {
1597
- propTypeNames: string[];
1598
- rule: string;
1599
- message: string;
1600
- }];
1601
- 'react/no-typos': "error";
1602
- 'react/jsx-curly-brace-presence': ["error", {
1603
- props: string;
1604
- children: string;
1605
- }];
1606
- 'react/jsx-one-expression-per-line': ["error", {
1607
- allow: string;
1608
- }];
1609
- 'react/destructuring-assignment': ["error", string];
1610
- 'react/no-access-state-in-setstate': "error";
1611
- 'react/button-has-type': ["error", {
1612
- button: boolean;
1613
- submit: boolean;
1614
- reset: boolean;
1615
- }];
1616
- 'react/jsx-child-element-spacing': "off";
1617
- 'react/no-this-in-sfc': "error";
1618
- 'react/jsx-max-depth': "off";
1619
- 'react/jsx-props-no-multi-spaces': "error";
1620
- 'react/no-unsafe': "off";
1621
- 'react/jsx-fragments': ["error", string];
1622
- 'react/jsx-curly-newline': ["error", {
1623
- multiline: string;
1624
- singleline: string;
1625
- }];
1626
- 'react/state-in-constructor': ["error", string];
1627
- 'react/static-property-placement': ["error", string];
1628
- 'react/jsx-props-no-spreading': ["error", {
1629
- html: string;
1630
- custom: string;
1631
- explicitSpread: string;
1632
- exceptions: never[];
1633
- }];
1634
- 'react/prefer-read-only-props': "off";
1635
- 'react/jsx-no-script-url': ["error", {
1636
- name: string;
1637
- props: string[];
1638
- }[]];
1639
- 'react/jsx-no-useless-fragment': "error";
1640
- 'react/no-adjacent-inline-elements': "off";
1641
- 'react/function-component-definition': ["error", {
1642
- namedComponents: string[];
1643
- unnamedComponents: string;
1644
- }];
1645
- 'react/jsx-newline': "off";
1646
- 'react/jsx-no-constructed-context-values': "error";
1647
- 'react/no-unstable-nested-components': "error";
1648
- 'react/no-namespace': "error";
1649
- 'react/prefer-exact-props': "error";
1650
- 'react/no-arrow-function-lifecycle': "error";
1651
- 'react/no-invalid-html-attribute': "error";
1652
- 'react/no-unused-class-component-methods': "error";
1653
- 'react/hook-use-state': "off";
1654
- 'react/iframe-missing-sandbox': "off";
1655
- 'react/jsx-no-leaked-render': "off";
1656
- 'react/no-object-type-as-default-prop': "off";
1657
- 'react/sort-default-props': ["off", {
1658
- ignoreCase: boolean;
1659
- }];
1660
- 'react/forward-ref-uses-ref': "off";
1661
- 'react/jsx-props-no-spread-multi': "off";
1662
- };
1663
- };
1664
- reactA11y: {
1665
- name: string;
1666
- plugins: {
1667
- 'jsx-a11y': any;
1668
- };
1669
- languageOptions: {
1670
- parserOptions: {
1671
- ecmaFeatures: {
1672
- jsx: true;
1673
- };
1674
- };
1675
- };
1676
- rules: {
1677
- 'jsx-a11y/accessible-emoji': "off";
1678
- 'jsx-a11y/alt-text': ["error", {
1679
- elements: string[];
1680
- img: never[];
1681
- object: never[];
1682
- area: never[];
1683
- 'input[type="image"]': never[];
1684
- }];
1685
- 'jsx-a11y/anchor-has-content': ["error", {
1686
- components: never[];
1687
- }];
1688
- 'jsx-a11y/anchor-is-valid': ["error", {
1689
- components: string[];
1690
- specialLink: string[];
1691
- aspects: string[];
1692
- }];
1693
- 'jsx-a11y/aria-activedescendant-has-tabindex': "error";
1694
- 'jsx-a11y/aria-props': "error";
1695
- 'jsx-a11y/aria-proptypes': "error";
1696
- 'jsx-a11y/aria-role': ["error", {
1697
- ignoreNonDOM: boolean;
1698
- }];
1699
- 'jsx-a11y/aria-unsupported-elements': "error";
1700
- 'jsx-a11y/autocomplete-valid': ["off", {
1701
- inputComponents: never[];
1702
- }];
1703
- 'jsx-a11y/click-events-have-key-events': "error";
1704
- 'jsx-a11y/control-has-associated-label': ["error", {
1705
- labelAttributes: string[];
1706
- controlComponents: never[];
1707
- ignoreElements: string[];
1708
- ignoreRoles: string[];
1709
- depth: number;
1710
- }];
1711
- 'jsx-a11y/heading-has-content': ["error", {
1712
- components: string[];
1713
- }];
1714
- 'jsx-a11y/html-has-lang': "error";
1715
- 'jsx-a11y/iframe-has-title': "error";
1716
- 'jsx-a11y/img-redundant-alt': "error";
1717
- 'jsx-a11y/interactive-supports-focus': "error";
1718
- 'jsx-a11y/label-has-associated-control': ["error", {
1719
- labelComponents: never[];
1720
- labelAttributes: never[];
1721
- controlComponents: never[];
1722
- assert: string;
1723
- depth: number;
1724
- }];
1725
- 'jsx-a11y/lang': "error";
1726
- 'jsx-a11y/media-has-caption': ["error", {
1727
- audio: never[];
1728
- video: never[];
1729
- track: never[];
1730
- }];
1731
- 'jsx-a11y/mouse-events-have-key-events': "error";
1732
- 'jsx-a11y/no-access-key': "error";
1733
- 'jsx-a11y/no-autofocus': ["error", {
1734
- ignoreNonDOM: boolean;
1735
- }];
1736
- 'jsx-a11y/no-distracting-elements': ["error", {
1737
- elements: string[];
1738
- }];
1739
- 'jsx-a11y/no-interactive-element-to-noninteractive-role': ["error", {
1740
- tr: string[];
1741
- }];
1742
- 'jsx-a11y/no-noninteractive-element-interactions': ["error", {
1743
- handlers: string[];
1744
- }];
1745
- 'jsx-a11y/no-noninteractive-element-to-interactive-role': ["error", {
1746
- ul: string[];
1747
- ol: string[];
1748
- li: string[];
1749
- table: string[];
1750
- td: string[];
1751
- }];
1752
- 'jsx-a11y/no-noninteractive-tabindex': ["error", {
1753
- tags: never[];
1754
- roles: string[];
1755
- allowExpressionValues: boolean;
1756
- }];
1757
- 'jsx-a11y/no-onchange': "off";
1758
- 'jsx-a11y/no-redundant-roles': ["error", {
1759
- nav: string[];
1760
- }];
1761
- 'jsx-a11y/no-static-element-interactions': ["error", {
1762
- handlers: string[];
1763
- }];
1764
- 'jsx-a11y/role-has-required-aria-props': "error";
1765
- 'jsx-a11y/role-supports-aria-props': "error";
1766
- 'jsx-a11y/scope': "error";
1767
- 'jsx-a11y/tabindex-no-positive': "error";
1768
- 'jsx-a11y/label-has-for': ["off", {
1769
- components: never[];
1770
- required: {
1771
- every: string[];
1772
- };
1773
- allowChildren: boolean;
1774
- }];
1775
- 'jsx-a11y/anchor-ambiguous-text': "off";
1776
- 'jsx-a11y/no-aria-hidden-on-focusable': "off";
1777
- 'jsx-a11y/prefer-tag-over-role': "off";
1778
- };
1779
- };
1780
- reactHooks: {
1781
- name: string;
1782
- plugins: {
1783
- 'react-hooks': typeof import("eslint-plugin-react-hooks");
1784
- };
1785
- languageOptions: {
1786
- parserOptions: {
1787
- ecmaFeatures: {
1788
- jsx: true;
1789
- };
1790
- };
1791
- };
1792
- rules: {
1793
- 'react-hooks/rules-of-hooks': "error";
1794
- 'react-hooks/exhaustive-deps': "error";
1795
- };
1796
- };
1797
- recommended: any[];
1798
- };
1799
- export default _default;