oxlint-react-compiler-experimental 0.0.7 → 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.
- package/configuration_schema.json +2702 -217
- package/dist/bindings.js +28 -27
- package/dist/cli.js +3 -3
- package/dist/globals.js +13 -0
- package/dist/index.d.ts +903 -19
- package/dist/index.js +11 -1
- package/dist/js_config.js +91 -26
- package/dist/lint.js +5139 -4051
- package/dist/oxlint.darwin-arm64.node +0 -0
- package/dist/oxlint.linux-arm64-gnu.node +0 -0
- package/dist/oxlint.linux-x64-gnu.node +0 -0
- package/dist/oxlint.win32-arm64-msvc.node +0 -0
- package/dist/oxlint.win32-x64-msvc.node +0 -0
- package/dist/plugins-dev.d.ts +2298 -2220
- package/dist/plugins-dev.js +18 -13
- package/dist/utils.js +1 -13
- package/package.json +16 -5
- package/dist/config.js +0 -16
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "Oxlintrc",
|
|
4
|
-
"description": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json`\n\nExample\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"plugins\": [\"import\", \"typescript\", \"unicorn\"],\n\"env\": {\n\"browser\": true\n},\n\"globals\": {\n\"foo\": \"readonly\"\n},\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n},\n\"custom\": { \"option\": true }\n},\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\n\"overrides\": [\n{\n\"files\": [\"*.test.ts\", \"*.spec.ts\"],\n\"rules\": {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}\n```\n\n`oxlint.config.ts`\n\n```ts\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\nplugins: [\"import\", \"typescript\", \"unicorn\"],\nenv: {\n\"browser\": true\n},\nglobals: {\n\"foo\": \"readonly\"\n},\nsettings: {\nreact: {\nversion: \"18.2.0\"\n},\ncustom: { option: true }\n},\nrules: {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\noverrides: [\n{\nfiles: [\"*.test.ts\", \"*.spec.ts\"],\nrules: {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}
|
|
4
|
+
"description": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json`\n\nExample\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"plugins\": [\"import\", \"typescript\", \"unicorn\"],\n\"env\": {\n\"browser\": true\n},\n\"globals\": {\n\"foo\": \"readonly\"\n},\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n},\n\"custom\": { \"option\": true }\n},\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\n\"overrides\": [\n{\n\"files\": [\"*.test.ts\", \"*.spec.ts\"],\n\"rules\": {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}\n```\n\n`oxlint.config.ts`\n\n```ts\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\nplugins: [\"import\", \"typescript\", \"unicorn\"],\nenv: {\n\"browser\": true\n},\nglobals: {\n\"foo\": \"readonly\"\n},\nsettings: {\nreact: {\nversion: \"18.2.0\"\n},\ncustom: { option: true }\n},\nrules: {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\noverrides: [\n{\nfiles: [\"*.test.ts\", \"*.spec.ts\"],\nrules: {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n});\n```",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"$schema": {
|
|
8
8
|
"description": "Schema URI for editor tooling.",
|
|
9
|
-
"type":
|
|
10
|
-
"string",
|
|
11
|
-
"null"
|
|
12
|
-
],
|
|
9
|
+
"type": "string",
|
|
13
10
|
"markdownDescription": "Schema URI for editor tooling."
|
|
14
11
|
},
|
|
15
12
|
"categories": {
|
|
@@ -60,183 +57,2657 @@
|
|
|
60
57
|
"markdownDescription": "Globs to ignore during linting. These are resolved from the configuration file path."
|
|
61
58
|
},
|
|
62
59
|
"jsPlugins": {
|
|
63
|
-
"description": "JS plugins, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are
|
|
60
|
+
"description": "JS plugins, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are in alpha and not subject to semver.\n\nExamples:\n\nBasic usage with a local plugin path.\n\n```json\n{\n\"jsPlugins\": [\"./custom-plugin.js\"],\n\"rules\": {\n\"custom/rule-name\": \"warn\"\n}\n}\n```\n\nBasic usage with a TypeScript plugin and a local plugin path.\n\nTypeScript plugin files are supported in the following environments:\n- Deno and Bun: TypeScript files are supported natively.\n- Node.js >=22.18.0 and Node.js ^20.19.0: TypeScript files are supported natively with built-in\ntype-stripping enabled by default.\n\nFor older Node.js versions, TypeScript plugins are not supported. Please use JavaScript plugins or upgrade your Node version.\n\n```json\n{\n\"jsPlugins\": [\"./custom-plugin.ts\"],\n\"rules\": {\n\"custom/rule-name\": \"warn\"\n}\n}\n```\n\nUsing a built-in Rust plugin alongside a JS plugin with the same name\nby giving the JS plugin an alias.\n\n```json\n{\n\"plugins\": [\"import\"],\n\"jsPlugins\": [\n{ \"name\": \"import-js\", \"specifier\": \"eslint-plugin-import\" }\n],\n\"rules\": {\n\"import/no-cycle\": \"error\",\n\"import-js/no-unresolved\": \"warn\"\n}\n}\n```",
|
|
64
61
|
"anyOf": [
|
|
65
62
|
{
|
|
66
63
|
"type": "null"
|
|
67
64
|
},
|
|
68
|
-
{
|
|
69
|
-
"type": "array",
|
|
70
|
-
"items": {
|
|
71
|
-
"$ref": "#/definitions/ExternalPluginEntry"
|
|
72
|
-
},
|
|
73
|
-
"uniqueItems": true
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
"markdownDescription": "JS plugins, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are
|
|
77
|
-
},
|
|
78
|
-
"options": {
|
|
79
|
-
"description": "Oxlint config options.",
|
|
80
|
-
"allOf": [
|
|
81
|
-
{
|
|
82
|
-
"$ref": "#/definitions/OxlintOptions"
|
|
83
|
-
}
|
|
84
|
-
],
|
|
85
|
-
"markdownDescription": "Oxlint config options."
|
|
86
|
-
},
|
|
87
|
-
"overrides": {
|
|
88
|
-
"description": "Add, remove, or otherwise reconfigure rules for specific files or groups of files.",
|
|
89
|
-
"allOf": [
|
|
90
|
-
{
|
|
91
|
-
"$ref": "#/definitions/OxlintOverrides"
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"markdownDescription": "Add, remove, or otherwise reconfigure rules for specific files or groups of files."
|
|
95
|
-
},
|
|
96
|
-
"plugins": {
|
|
97
|
-
"description": "Enabled built-in plugins for Oxlint.\nYou can view the list of available plugins on\n[the website](https://oxc.rs/docs/guide/usage/linter/plugins.html#supported-plugins).\n\nNOTE: Setting the `plugins` field will overwrite the base set of plugins.\nThe `plugins` array should reflect all of the plugins you want to use.",
|
|
98
|
-
"default": null,
|
|
99
|
-
"
|
|
100
|
-
{
|
|
101
|
-
"$ref": "#/definitions/LintPlugins"
|
|
65
|
+
{
|
|
66
|
+
"type": "array",
|
|
67
|
+
"items": {
|
|
68
|
+
"$ref": "#/definitions/ExternalPluginEntry"
|
|
69
|
+
},
|
|
70
|
+
"uniqueItems": true
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"markdownDescription": "JS plugins, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are in alpha and not subject to semver.\n\nExamples:\n\nBasic usage with a local plugin path.\n\n```json\n{\n\"jsPlugins\": [\"./custom-plugin.js\"],\n\"rules\": {\n\"custom/rule-name\": \"warn\"\n}\n}\n```\n\nBasic usage with a TypeScript plugin and a local plugin path.\n\nTypeScript plugin files are supported in the following environments:\n- Deno and Bun: TypeScript files are supported natively.\n- Node.js >=22.18.0 and Node.js ^20.19.0: TypeScript files are supported natively with built-in\ntype-stripping enabled by default.\n\nFor older Node.js versions, TypeScript plugins are not supported. Please use JavaScript plugins or upgrade your Node version.\n\n```json\n{\n\"jsPlugins\": [\"./custom-plugin.ts\"],\n\"rules\": {\n\"custom/rule-name\": \"warn\"\n}\n}\n```\n\nUsing a built-in Rust plugin alongside a JS plugin with the same name\nby giving the JS plugin an alias.\n\n```json\n{\n\"plugins\": [\"import\"],\n\"jsPlugins\": [\n{ \"name\": \"import-js\", \"specifier\": \"eslint-plugin-import\" }\n],\n\"rules\": {\n\"import/no-cycle\": \"error\",\n\"import-js/no-unresolved\": \"warn\"\n}\n}\n```"
|
|
74
|
+
},
|
|
75
|
+
"options": {
|
|
76
|
+
"description": "Oxlint config options.",
|
|
77
|
+
"allOf": [
|
|
78
|
+
{
|
|
79
|
+
"$ref": "#/definitions/OxlintOptions"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"markdownDescription": "Oxlint config options."
|
|
83
|
+
},
|
|
84
|
+
"overrides": {
|
|
85
|
+
"description": "Add, remove, or otherwise reconfigure rules for specific files or groups of files.",
|
|
86
|
+
"allOf": [
|
|
87
|
+
{
|
|
88
|
+
"$ref": "#/definitions/OxlintOverrides"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"markdownDescription": "Add, remove, or otherwise reconfigure rules for specific files or groups of files."
|
|
92
|
+
},
|
|
93
|
+
"plugins": {
|
|
94
|
+
"description": "Enabled built-in plugins for Oxlint.\nYou can view the list of available plugins on\n[the website](https://oxc.rs/docs/guide/usage/linter/plugins.html#supported-plugins).\n\nNOTE: Setting the `plugins` field will overwrite the base set of plugins.\nThe `plugins` array should reflect all of the plugins you want to use.",
|
|
95
|
+
"default": null,
|
|
96
|
+
"allOf": [
|
|
97
|
+
{
|
|
98
|
+
"$ref": "#/definitions/LintPlugins"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"markdownDescription": "Enabled built-in plugins for Oxlint.\nYou can view the list of available plugins on\n[the website](https://oxc.rs/docs/guide/usage/linter/plugins.html#supported-plugins).\n\nNOTE: Setting the `plugins` field will overwrite the base set of plugins.\nThe `plugins` array should reflect all of the plugins you want to use."
|
|
102
|
+
},
|
|
103
|
+
"rules": {
|
|
104
|
+
"description": "Example\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"prefer-const\": [\"error\", { \"ignoreReadBeforeAssign\": true }]\n}\n}\n```\n\nSee [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html) for the list of\nrules.",
|
|
105
|
+
"default": {},
|
|
106
|
+
"allOf": [
|
|
107
|
+
{
|
|
108
|
+
"$ref": "#/definitions/OxlintRules"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"markdownDescription": "Example\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"prefer-const\": [\"error\", { \"ignoreReadBeforeAssign\": true }]\n}\n}\n```\n\nSee [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html) for the list of\nrules."
|
|
112
|
+
},
|
|
113
|
+
"settings": {
|
|
114
|
+
"description": "Plugin-specific configuration for both built-in and custom plugins.\nThis includes settings for built-in plugins such as `react` and `jsdoc`\nas well as configuring settings for JS custom plugins loaded via `jsPlugins`.",
|
|
115
|
+
"default": {
|
|
116
|
+
"jsx-a11y": {
|
|
117
|
+
"polymorphicPropName": null,
|
|
118
|
+
"components": {},
|
|
119
|
+
"attributes": {}
|
|
120
|
+
},
|
|
121
|
+
"next": {
|
|
122
|
+
"rootDir": []
|
|
123
|
+
},
|
|
124
|
+
"react": {
|
|
125
|
+
"formComponents": [],
|
|
126
|
+
"linkComponents": [],
|
|
127
|
+
"version": null,
|
|
128
|
+
"componentWrapperFunctions": []
|
|
129
|
+
},
|
|
130
|
+
"jsdoc": {
|
|
131
|
+
"ignorePrivate": false,
|
|
132
|
+
"ignoreInternal": false,
|
|
133
|
+
"ignoreReplacesDocs": true,
|
|
134
|
+
"overrideReplacesDocs": true,
|
|
135
|
+
"augmentsExtendsReplacesDocs": false,
|
|
136
|
+
"implementsReplacesDocs": false,
|
|
137
|
+
"exemptDestructuredRootsFromChecks": false,
|
|
138
|
+
"tagNamePreference": {}
|
|
139
|
+
},
|
|
140
|
+
"vitest": {
|
|
141
|
+
"typecheck": false
|
|
142
|
+
},
|
|
143
|
+
"jest": {
|
|
144
|
+
"version": null
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"allOf": [
|
|
148
|
+
{
|
|
149
|
+
"$ref": "#/definitions/OxlintSettings"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"markdownDescription": "Plugin-specific configuration for both built-in and custom plugins.\nThis includes settings for built-in plugins such as `react` and `jsdoc`\nas well as configuring settings for JS custom plugins loaded via `jsPlugins`."
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"additionalProperties": false,
|
|
156
|
+
"allowComments": true,
|
|
157
|
+
"allowTrailingCommas": true,
|
|
158
|
+
"definitions": {
|
|
159
|
+
"AllowWarnDeny": {
|
|
160
|
+
"oneOf": [
|
|
161
|
+
{
|
|
162
|
+
"description": "Oxlint rule.\n- \"allow\" or \"off\": Turn off the rule.\n- \"warn\": Turn the rule on as a warning (doesn't affect exit code).\n- \"error\" or \"deny\": Turn the rule on as an error (will exit with a failure code).",
|
|
163
|
+
"type": "string",
|
|
164
|
+
"enum": [
|
|
165
|
+
"allow",
|
|
166
|
+
"off",
|
|
167
|
+
"warn",
|
|
168
|
+
"error",
|
|
169
|
+
"deny"
|
|
170
|
+
],
|
|
171
|
+
"markdownDescription": "Oxlint rule.\n- \"allow\" or \"off\": Turn off the rule.\n- \"warn\": Turn the rule on as a warning (doesn't affect exit code).\n- \"error\" or \"deny\": Turn the rule on as an error (will exit with a failure code)."
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"description": "Oxlint rule.\n \n- 0: Turn off the rule.\n- 1: Turn the rule on as a warning (doesn't affect exit code).\n- 2: Turn the rule on as an error (will exit with a failure code).",
|
|
175
|
+
"type": "integer",
|
|
176
|
+
"format": "uint32",
|
|
177
|
+
"maximum": 2.0,
|
|
178
|
+
"minimum": 0.0,
|
|
179
|
+
"markdownDescription": "Oxlint rule.\n \n- 0: Turn off the rule.\n- 1: Turn the rule on as a warning (doesn't affect exit code).\n- 2: Turn the rule on as an error (will exit with a failure code)."
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
"CustomComponent": {
|
|
184
|
+
"anyOf": [
|
|
185
|
+
{
|
|
186
|
+
"type": "string"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"type": "object",
|
|
190
|
+
"required": [
|
|
191
|
+
"attribute",
|
|
192
|
+
"name"
|
|
193
|
+
],
|
|
194
|
+
"properties": {
|
|
195
|
+
"attribute": {
|
|
196
|
+
"type": "string"
|
|
197
|
+
},
|
|
198
|
+
"name": {
|
|
199
|
+
"type": "string"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"type": "object",
|
|
205
|
+
"required": [
|
|
206
|
+
"attributes",
|
|
207
|
+
"name"
|
|
208
|
+
],
|
|
209
|
+
"properties": {
|
|
210
|
+
"attributes": {
|
|
211
|
+
"type": "array",
|
|
212
|
+
"items": {
|
|
213
|
+
"type": "string"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"name": {
|
|
217
|
+
"type": "string"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"DummyRule": {
|
|
224
|
+
"anyOf": [
|
|
225
|
+
{
|
|
226
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"type": "array",
|
|
230
|
+
"items": [
|
|
231
|
+
{
|
|
232
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"additionalItems": true,
|
|
236
|
+
"minItems": 1
|
|
237
|
+
}
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
"DummyRuleMap": {
|
|
241
|
+
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)",
|
|
242
|
+
"type": "object",
|
|
243
|
+
"properties": {
|
|
244
|
+
"accessor-pairs": {
|
|
245
|
+
"$ref": "#/definitions/DummyRule"
|
|
246
|
+
},
|
|
247
|
+
"array-callback-return": {
|
|
248
|
+
"$ref": "#/definitions/DummyRule"
|
|
249
|
+
},
|
|
250
|
+
"arrow-body-style": {
|
|
251
|
+
"$ref": "#/definitions/DummyRule"
|
|
252
|
+
},
|
|
253
|
+
"block-scoped-var": {
|
|
254
|
+
"$ref": "#/definitions/DummyRule"
|
|
255
|
+
},
|
|
256
|
+
"capitalized-comments": {
|
|
257
|
+
"$ref": "#/definitions/DummyRule"
|
|
258
|
+
},
|
|
259
|
+
"class-methods-use-this": {
|
|
260
|
+
"$ref": "#/definitions/DummyRule"
|
|
261
|
+
},
|
|
262
|
+
"complexity": {
|
|
263
|
+
"$ref": "#/definitions/DummyRule"
|
|
264
|
+
},
|
|
265
|
+
"constructor-super": {
|
|
266
|
+
"$ref": "#/definitions/DummyRule"
|
|
267
|
+
},
|
|
268
|
+
"curly": {
|
|
269
|
+
"$ref": "#/definitions/DummyRule"
|
|
270
|
+
},
|
|
271
|
+
"default-case": {
|
|
272
|
+
"$ref": "#/definitions/DummyRule"
|
|
273
|
+
},
|
|
274
|
+
"default-case-last": {
|
|
275
|
+
"$ref": "#/definitions/DummyRule"
|
|
276
|
+
},
|
|
277
|
+
"default-param-last": {
|
|
278
|
+
"$ref": "#/definitions/DummyRule"
|
|
279
|
+
},
|
|
280
|
+
"eqeqeq": {
|
|
281
|
+
"$ref": "#/definitions/DummyRule"
|
|
282
|
+
},
|
|
283
|
+
"for-direction": {
|
|
284
|
+
"$ref": "#/definitions/DummyRule"
|
|
285
|
+
},
|
|
286
|
+
"func-name-matching": {
|
|
287
|
+
"$ref": "#/definitions/DummyRule"
|
|
288
|
+
},
|
|
289
|
+
"func-names": {
|
|
290
|
+
"$ref": "#/definitions/DummyRule"
|
|
291
|
+
},
|
|
292
|
+
"func-style": {
|
|
293
|
+
"$ref": "#/definitions/DummyRule"
|
|
294
|
+
},
|
|
295
|
+
"getter-return": {
|
|
296
|
+
"$ref": "#/definitions/DummyRule"
|
|
297
|
+
},
|
|
298
|
+
"grouped-accessor-pairs": {
|
|
299
|
+
"$ref": "#/definitions/DummyRule"
|
|
300
|
+
},
|
|
301
|
+
"guard-for-in": {
|
|
302
|
+
"$ref": "#/definitions/DummyRule"
|
|
303
|
+
},
|
|
304
|
+
"id-length": {
|
|
305
|
+
"$ref": "#/definitions/DummyRule"
|
|
306
|
+
},
|
|
307
|
+
"import/consistent-type-specifier-style": {
|
|
308
|
+
"$ref": "#/definitions/DummyRule"
|
|
309
|
+
},
|
|
310
|
+
"import/default": {
|
|
311
|
+
"$ref": "#/definitions/DummyRule"
|
|
312
|
+
},
|
|
313
|
+
"import/export": {
|
|
314
|
+
"$ref": "#/definitions/DummyRule"
|
|
315
|
+
},
|
|
316
|
+
"import/exports-last": {
|
|
317
|
+
"$ref": "#/definitions/DummyRule"
|
|
318
|
+
},
|
|
319
|
+
"import/extensions": {
|
|
320
|
+
"$ref": "#/definitions/DummyRule"
|
|
321
|
+
},
|
|
322
|
+
"import/first": {
|
|
323
|
+
"$ref": "#/definitions/DummyRule"
|
|
324
|
+
},
|
|
325
|
+
"import/group-exports": {
|
|
326
|
+
"$ref": "#/definitions/DummyRule"
|
|
327
|
+
},
|
|
328
|
+
"import/max-dependencies": {
|
|
329
|
+
"$ref": "#/definitions/DummyRule"
|
|
330
|
+
},
|
|
331
|
+
"import/named": {
|
|
332
|
+
"$ref": "#/definitions/DummyRule"
|
|
333
|
+
},
|
|
334
|
+
"import/namespace": {
|
|
335
|
+
"$ref": "#/definitions/DummyRule"
|
|
336
|
+
},
|
|
337
|
+
"import/no-absolute-path": {
|
|
338
|
+
"$ref": "#/definitions/DummyRule"
|
|
339
|
+
},
|
|
340
|
+
"import/no-amd": {
|
|
341
|
+
"$ref": "#/definitions/DummyRule"
|
|
342
|
+
},
|
|
343
|
+
"import/no-anonymous-default-export": {
|
|
344
|
+
"$ref": "#/definitions/DummyRule"
|
|
345
|
+
},
|
|
346
|
+
"import/no-commonjs": {
|
|
347
|
+
"$ref": "#/definitions/DummyRule"
|
|
348
|
+
},
|
|
349
|
+
"import/no-cycle": {
|
|
350
|
+
"$ref": "#/definitions/DummyRule"
|
|
351
|
+
},
|
|
352
|
+
"import/no-default-export": {
|
|
353
|
+
"$ref": "#/definitions/DummyRule"
|
|
354
|
+
},
|
|
355
|
+
"import/no-duplicates": {
|
|
356
|
+
"$ref": "#/definitions/DummyRule"
|
|
357
|
+
},
|
|
358
|
+
"import/no-dynamic-require": {
|
|
359
|
+
"$ref": "#/definitions/DummyRule"
|
|
360
|
+
},
|
|
361
|
+
"import/no-empty-named-blocks": {
|
|
362
|
+
"$ref": "#/definitions/DummyRule"
|
|
363
|
+
},
|
|
364
|
+
"import/no-mutable-exports": {
|
|
365
|
+
"$ref": "#/definitions/DummyRule"
|
|
366
|
+
},
|
|
367
|
+
"import/no-named-as-default": {
|
|
368
|
+
"$ref": "#/definitions/DummyRule"
|
|
369
|
+
},
|
|
370
|
+
"import/no-named-as-default-member": {
|
|
371
|
+
"$ref": "#/definitions/DummyRule"
|
|
372
|
+
},
|
|
373
|
+
"import/no-named-default": {
|
|
374
|
+
"$ref": "#/definitions/DummyRule"
|
|
375
|
+
},
|
|
376
|
+
"import/no-named-export": {
|
|
377
|
+
"$ref": "#/definitions/DummyRule"
|
|
378
|
+
},
|
|
379
|
+
"import/no-namespace": {
|
|
380
|
+
"$ref": "#/definitions/DummyRule"
|
|
381
|
+
},
|
|
382
|
+
"import/no-nodejs-modules": {
|
|
383
|
+
"$ref": "#/definitions/DummyRule"
|
|
384
|
+
},
|
|
385
|
+
"import/no-relative-parent-imports": {
|
|
386
|
+
"$ref": "#/definitions/DummyRule"
|
|
387
|
+
},
|
|
388
|
+
"import/no-self-import": {
|
|
389
|
+
"$ref": "#/definitions/DummyRule"
|
|
390
|
+
},
|
|
391
|
+
"import/no-unassigned-import": {
|
|
392
|
+
"$ref": "#/definitions/DummyRule"
|
|
393
|
+
},
|
|
394
|
+
"import/no-webpack-loader-syntax": {
|
|
395
|
+
"$ref": "#/definitions/DummyRule"
|
|
396
|
+
},
|
|
397
|
+
"import/prefer-default-export": {
|
|
398
|
+
"$ref": "#/definitions/DummyRule"
|
|
399
|
+
},
|
|
400
|
+
"import/unambiguous": {
|
|
401
|
+
"$ref": "#/definitions/DummyRule"
|
|
402
|
+
},
|
|
403
|
+
"init-declarations": {
|
|
404
|
+
"$ref": "#/definitions/DummyRule"
|
|
405
|
+
},
|
|
406
|
+
"jest/consistent-test-it": {
|
|
407
|
+
"$ref": "#/definitions/DummyRule"
|
|
408
|
+
},
|
|
409
|
+
"jest/expect-expect": {
|
|
410
|
+
"$ref": "#/definitions/DummyRule"
|
|
411
|
+
},
|
|
412
|
+
"jest/max-expects": {
|
|
413
|
+
"$ref": "#/definitions/DummyRule"
|
|
414
|
+
},
|
|
415
|
+
"jest/max-nested-describe": {
|
|
416
|
+
"$ref": "#/definitions/DummyRule"
|
|
417
|
+
},
|
|
418
|
+
"jest/no-alias-methods": {
|
|
419
|
+
"$ref": "#/definitions/DummyRule"
|
|
420
|
+
},
|
|
421
|
+
"jest/no-commented-out-tests": {
|
|
422
|
+
"$ref": "#/definitions/DummyRule"
|
|
423
|
+
},
|
|
424
|
+
"jest/no-conditional-expect": {
|
|
425
|
+
"$ref": "#/definitions/DummyRule"
|
|
426
|
+
},
|
|
427
|
+
"jest/no-conditional-in-test": {
|
|
428
|
+
"$ref": "#/definitions/DummyRule"
|
|
429
|
+
},
|
|
430
|
+
"jest/no-confusing-set-timeout": {
|
|
431
|
+
"$ref": "#/definitions/DummyRule"
|
|
432
|
+
},
|
|
433
|
+
"jest/no-deprecated-functions": {
|
|
434
|
+
"$ref": "#/definitions/DummyRule"
|
|
435
|
+
},
|
|
436
|
+
"jest/no-disabled-tests": {
|
|
437
|
+
"$ref": "#/definitions/DummyRule"
|
|
438
|
+
},
|
|
439
|
+
"jest/no-done-callback": {
|
|
440
|
+
"$ref": "#/definitions/DummyRule"
|
|
441
|
+
},
|
|
442
|
+
"jest/no-duplicate-hooks": {
|
|
443
|
+
"$ref": "#/definitions/DummyRule"
|
|
444
|
+
},
|
|
445
|
+
"jest/no-export": {
|
|
446
|
+
"$ref": "#/definitions/DummyRule"
|
|
447
|
+
},
|
|
448
|
+
"jest/no-focused-tests": {
|
|
449
|
+
"$ref": "#/definitions/DummyRule"
|
|
450
|
+
},
|
|
451
|
+
"jest/no-hooks": {
|
|
452
|
+
"$ref": "#/definitions/DummyRule"
|
|
453
|
+
},
|
|
454
|
+
"jest/no-identical-title": {
|
|
455
|
+
"$ref": "#/definitions/DummyRule"
|
|
456
|
+
},
|
|
457
|
+
"jest/no-interpolation-in-snapshots": {
|
|
458
|
+
"$ref": "#/definitions/DummyRule"
|
|
459
|
+
},
|
|
460
|
+
"jest/no-jasmine-globals": {
|
|
461
|
+
"$ref": "#/definitions/DummyRule"
|
|
462
|
+
},
|
|
463
|
+
"jest/no-large-snapshots": {
|
|
464
|
+
"$ref": "#/definitions/DummyRule"
|
|
465
|
+
},
|
|
466
|
+
"jest/no-mocks-import": {
|
|
467
|
+
"$ref": "#/definitions/DummyRule"
|
|
468
|
+
},
|
|
469
|
+
"jest/no-restricted-jest-methods": {
|
|
470
|
+
"$ref": "#/definitions/DummyRule"
|
|
471
|
+
},
|
|
472
|
+
"jest/no-restricted-matchers": {
|
|
473
|
+
"$ref": "#/definitions/DummyRule"
|
|
474
|
+
},
|
|
475
|
+
"jest/no-standalone-expect": {
|
|
476
|
+
"$ref": "#/definitions/DummyRule"
|
|
477
|
+
},
|
|
478
|
+
"jest/no-test-prefixes": {
|
|
479
|
+
"$ref": "#/definitions/DummyRule"
|
|
480
|
+
},
|
|
481
|
+
"jest/no-test-return-statement": {
|
|
482
|
+
"$ref": "#/definitions/DummyRule"
|
|
483
|
+
},
|
|
484
|
+
"jest/no-unneeded-async-expect-function": {
|
|
485
|
+
"$ref": "#/definitions/DummyRule"
|
|
486
|
+
},
|
|
487
|
+
"jest/no-untyped-mock-factory": {
|
|
488
|
+
"$ref": "#/definitions/DummyRule"
|
|
489
|
+
},
|
|
490
|
+
"jest/padding-around-after-all-blocks": {
|
|
491
|
+
"$ref": "#/definitions/DummyRule"
|
|
492
|
+
},
|
|
493
|
+
"jest/padding-around-test-blocks": {
|
|
494
|
+
"$ref": "#/definitions/DummyRule"
|
|
495
|
+
},
|
|
496
|
+
"jest/prefer-called-with": {
|
|
497
|
+
"$ref": "#/definitions/DummyRule"
|
|
498
|
+
},
|
|
499
|
+
"jest/prefer-comparison-matcher": {
|
|
500
|
+
"$ref": "#/definitions/DummyRule"
|
|
501
|
+
},
|
|
502
|
+
"jest/prefer-each": {
|
|
503
|
+
"$ref": "#/definitions/DummyRule"
|
|
504
|
+
},
|
|
505
|
+
"jest/prefer-ending-with-an-expect": {
|
|
506
|
+
"$ref": "#/definitions/DummyRule"
|
|
507
|
+
},
|
|
508
|
+
"jest/prefer-equality-matcher": {
|
|
509
|
+
"$ref": "#/definitions/DummyRule"
|
|
510
|
+
},
|
|
511
|
+
"jest/prefer-expect-assertions": {
|
|
512
|
+
"$ref": "#/definitions/DummyRule"
|
|
513
|
+
},
|
|
514
|
+
"jest/prefer-expect-resolves": {
|
|
515
|
+
"$ref": "#/definitions/DummyRule"
|
|
516
|
+
},
|
|
517
|
+
"jest/prefer-hooks-in-order": {
|
|
518
|
+
"$ref": "#/definitions/DummyRule"
|
|
519
|
+
},
|
|
520
|
+
"jest/prefer-hooks-on-top": {
|
|
521
|
+
"$ref": "#/definitions/DummyRule"
|
|
522
|
+
},
|
|
523
|
+
"jest/prefer-importing-jest-globals": {
|
|
524
|
+
"$ref": "#/definitions/DummyRule"
|
|
525
|
+
},
|
|
526
|
+
"jest/prefer-jest-mocked": {
|
|
527
|
+
"$ref": "#/definitions/DummyRule"
|
|
528
|
+
},
|
|
529
|
+
"jest/prefer-lowercase-title": {
|
|
530
|
+
"$ref": "#/definitions/DummyRule"
|
|
531
|
+
},
|
|
532
|
+
"jest/prefer-mock-promise-shorthand": {
|
|
533
|
+
"$ref": "#/definitions/DummyRule"
|
|
534
|
+
},
|
|
535
|
+
"jest/prefer-mock-return-shorthand": {
|
|
536
|
+
"$ref": "#/definitions/DummyRule"
|
|
537
|
+
},
|
|
538
|
+
"jest/prefer-snapshot-hint": {
|
|
539
|
+
"$ref": "#/definitions/DummyRule"
|
|
540
|
+
},
|
|
541
|
+
"jest/prefer-spy-on": {
|
|
542
|
+
"$ref": "#/definitions/DummyRule"
|
|
543
|
+
},
|
|
544
|
+
"jest/prefer-strict-equal": {
|
|
545
|
+
"$ref": "#/definitions/DummyRule"
|
|
546
|
+
},
|
|
547
|
+
"jest/prefer-to-be": {
|
|
548
|
+
"$ref": "#/definitions/DummyRule"
|
|
549
|
+
},
|
|
550
|
+
"jest/prefer-to-contain": {
|
|
551
|
+
"$ref": "#/definitions/DummyRule"
|
|
552
|
+
},
|
|
553
|
+
"jest/prefer-to-have-been-called": {
|
|
554
|
+
"$ref": "#/definitions/DummyRule"
|
|
555
|
+
},
|
|
556
|
+
"jest/prefer-to-have-been-called-times": {
|
|
557
|
+
"$ref": "#/definitions/DummyRule"
|
|
558
|
+
},
|
|
559
|
+
"jest/prefer-to-have-length": {
|
|
560
|
+
"$ref": "#/definitions/DummyRule"
|
|
561
|
+
},
|
|
562
|
+
"jest/prefer-todo": {
|
|
563
|
+
"$ref": "#/definitions/DummyRule"
|
|
564
|
+
},
|
|
565
|
+
"jest/require-hook": {
|
|
566
|
+
"$ref": "#/definitions/DummyRule"
|
|
567
|
+
},
|
|
568
|
+
"jest/require-to-throw-message": {
|
|
569
|
+
"$ref": "#/definitions/DummyRule"
|
|
570
|
+
},
|
|
571
|
+
"jest/require-top-level-describe": {
|
|
572
|
+
"$ref": "#/definitions/DummyRule"
|
|
573
|
+
},
|
|
574
|
+
"jest/valid-describe-callback": {
|
|
575
|
+
"$ref": "#/definitions/DummyRule"
|
|
576
|
+
},
|
|
577
|
+
"jest/valid-expect": {
|
|
578
|
+
"$ref": "#/definitions/DummyRule"
|
|
579
|
+
},
|
|
580
|
+
"jest/valid-expect-in-promise": {
|
|
581
|
+
"$ref": "#/definitions/DummyRule"
|
|
582
|
+
},
|
|
583
|
+
"jest/valid-title": {
|
|
584
|
+
"$ref": "#/definitions/DummyRule"
|
|
585
|
+
},
|
|
586
|
+
"jsdoc/check-access": {
|
|
587
|
+
"$ref": "#/definitions/DummyRule"
|
|
588
|
+
},
|
|
589
|
+
"jsdoc/check-property-names": {
|
|
590
|
+
"$ref": "#/definitions/DummyRule"
|
|
591
|
+
},
|
|
592
|
+
"jsdoc/check-tag-names": {
|
|
593
|
+
"$ref": "#/definitions/DummyRule"
|
|
594
|
+
},
|
|
595
|
+
"jsdoc/empty-tags": {
|
|
596
|
+
"$ref": "#/definitions/DummyRule"
|
|
597
|
+
},
|
|
598
|
+
"jsdoc/implements-on-classes": {
|
|
599
|
+
"$ref": "#/definitions/DummyRule"
|
|
600
|
+
},
|
|
601
|
+
"jsdoc/no-defaults": {
|
|
602
|
+
"$ref": "#/definitions/DummyRule"
|
|
603
|
+
},
|
|
604
|
+
"jsdoc/require-param": {
|
|
605
|
+
"$ref": "#/definitions/DummyRule"
|
|
606
|
+
},
|
|
607
|
+
"jsdoc/require-param-description": {
|
|
608
|
+
"$ref": "#/definitions/DummyRule"
|
|
609
|
+
},
|
|
610
|
+
"jsdoc/require-param-name": {
|
|
611
|
+
"$ref": "#/definitions/DummyRule"
|
|
612
|
+
},
|
|
613
|
+
"jsdoc/require-param-type": {
|
|
614
|
+
"$ref": "#/definitions/DummyRule"
|
|
615
|
+
},
|
|
616
|
+
"jsdoc/require-property": {
|
|
617
|
+
"$ref": "#/definitions/DummyRule"
|
|
618
|
+
},
|
|
619
|
+
"jsdoc/require-property-description": {
|
|
620
|
+
"$ref": "#/definitions/DummyRule"
|
|
621
|
+
},
|
|
622
|
+
"jsdoc/require-property-name": {
|
|
623
|
+
"$ref": "#/definitions/DummyRule"
|
|
624
|
+
},
|
|
625
|
+
"jsdoc/require-property-type": {
|
|
626
|
+
"$ref": "#/definitions/DummyRule"
|
|
627
|
+
},
|
|
628
|
+
"jsdoc/require-returns": {
|
|
629
|
+
"$ref": "#/definitions/DummyRule"
|
|
630
|
+
},
|
|
631
|
+
"jsdoc/require-returns-description": {
|
|
632
|
+
"$ref": "#/definitions/DummyRule"
|
|
633
|
+
},
|
|
634
|
+
"jsdoc/require-returns-type": {
|
|
635
|
+
"$ref": "#/definitions/DummyRule"
|
|
636
|
+
},
|
|
637
|
+
"jsdoc/require-throws-description": {
|
|
638
|
+
"$ref": "#/definitions/DummyRule"
|
|
639
|
+
},
|
|
640
|
+
"jsdoc/require-throws-type": {
|
|
641
|
+
"$ref": "#/definitions/DummyRule"
|
|
642
|
+
},
|
|
643
|
+
"jsdoc/require-yields": {
|
|
644
|
+
"$ref": "#/definitions/DummyRule"
|
|
645
|
+
},
|
|
646
|
+
"jsdoc/require-yields-type": {
|
|
647
|
+
"$ref": "#/definitions/DummyRule"
|
|
648
|
+
},
|
|
649
|
+
"jsx-a11y/alt-text": {
|
|
650
|
+
"$ref": "#/definitions/DummyRule"
|
|
651
|
+
},
|
|
652
|
+
"jsx-a11y/anchor-ambiguous-text": {
|
|
653
|
+
"$ref": "#/definitions/DummyRule"
|
|
654
|
+
},
|
|
655
|
+
"jsx-a11y/anchor-has-content": {
|
|
656
|
+
"$ref": "#/definitions/DummyRule"
|
|
657
|
+
},
|
|
658
|
+
"jsx-a11y/anchor-is-valid": {
|
|
659
|
+
"$ref": "#/definitions/DummyRule"
|
|
660
|
+
},
|
|
661
|
+
"jsx-a11y/aria-activedescendant-has-tabindex": {
|
|
662
|
+
"$ref": "#/definitions/DummyRule"
|
|
663
|
+
},
|
|
664
|
+
"jsx-a11y/aria-props": {
|
|
665
|
+
"$ref": "#/definitions/DummyRule"
|
|
666
|
+
},
|
|
667
|
+
"jsx-a11y/aria-proptypes": {
|
|
668
|
+
"$ref": "#/definitions/DummyRule"
|
|
669
|
+
},
|
|
670
|
+
"jsx-a11y/aria-role": {
|
|
671
|
+
"$ref": "#/definitions/DummyRule"
|
|
672
|
+
},
|
|
673
|
+
"jsx-a11y/aria-unsupported-elements": {
|
|
674
|
+
"$ref": "#/definitions/DummyRule"
|
|
675
|
+
},
|
|
676
|
+
"jsx-a11y/autocomplete-valid": {
|
|
677
|
+
"$ref": "#/definitions/DummyRule"
|
|
678
|
+
},
|
|
679
|
+
"jsx-a11y/click-events-have-key-events": {
|
|
680
|
+
"$ref": "#/definitions/DummyRule"
|
|
681
|
+
},
|
|
682
|
+
"jsx-a11y/control-has-associated-label": {
|
|
683
|
+
"$ref": "#/definitions/DummyRule"
|
|
684
|
+
},
|
|
685
|
+
"jsx-a11y/heading-has-content": {
|
|
686
|
+
"$ref": "#/definitions/DummyRule"
|
|
687
|
+
},
|
|
688
|
+
"jsx-a11y/html-has-lang": {
|
|
689
|
+
"$ref": "#/definitions/DummyRule"
|
|
690
|
+
},
|
|
691
|
+
"jsx-a11y/iframe-has-title": {
|
|
692
|
+
"$ref": "#/definitions/DummyRule"
|
|
693
|
+
},
|
|
694
|
+
"jsx-a11y/img-redundant-alt": {
|
|
695
|
+
"$ref": "#/definitions/DummyRule"
|
|
696
|
+
},
|
|
697
|
+
"jsx-a11y/interactive-supports-focus": {
|
|
698
|
+
"$ref": "#/definitions/DummyRule"
|
|
699
|
+
},
|
|
700
|
+
"jsx-a11y/label-has-associated-control": {
|
|
701
|
+
"$ref": "#/definitions/DummyRule"
|
|
702
|
+
},
|
|
703
|
+
"jsx-a11y/lang": {
|
|
704
|
+
"$ref": "#/definitions/DummyRule"
|
|
705
|
+
},
|
|
706
|
+
"jsx-a11y/media-has-caption": {
|
|
707
|
+
"$ref": "#/definitions/DummyRule"
|
|
708
|
+
},
|
|
709
|
+
"jsx-a11y/mouse-events-have-key-events": {
|
|
710
|
+
"$ref": "#/definitions/DummyRule"
|
|
711
|
+
},
|
|
712
|
+
"jsx-a11y/no-access-key": {
|
|
713
|
+
"$ref": "#/definitions/DummyRule"
|
|
714
|
+
},
|
|
715
|
+
"jsx-a11y/no-aria-hidden-on-focusable": {
|
|
716
|
+
"$ref": "#/definitions/DummyRule"
|
|
717
|
+
},
|
|
718
|
+
"jsx-a11y/no-autofocus": {
|
|
719
|
+
"$ref": "#/definitions/DummyRule"
|
|
720
|
+
},
|
|
721
|
+
"jsx-a11y/no-distracting-elements": {
|
|
722
|
+
"$ref": "#/definitions/DummyRule"
|
|
723
|
+
},
|
|
724
|
+
"jsx-a11y/no-interactive-element-to-noninteractive-role": {
|
|
725
|
+
"$ref": "#/definitions/DummyRule"
|
|
726
|
+
},
|
|
727
|
+
"jsx-a11y/no-noninteractive-element-interactions": {
|
|
728
|
+
"$ref": "#/definitions/DummyRule"
|
|
729
|
+
},
|
|
730
|
+
"jsx-a11y/no-noninteractive-element-to-interactive-role": {
|
|
731
|
+
"$ref": "#/definitions/DummyRule"
|
|
732
|
+
},
|
|
733
|
+
"jsx-a11y/no-noninteractive-tabindex": {
|
|
734
|
+
"$ref": "#/definitions/DummyRule"
|
|
735
|
+
},
|
|
736
|
+
"jsx-a11y/no-redundant-roles": {
|
|
737
|
+
"$ref": "#/definitions/DummyRule"
|
|
738
|
+
},
|
|
739
|
+
"jsx-a11y/no-static-element-interactions": {
|
|
740
|
+
"$ref": "#/definitions/DummyRule"
|
|
741
|
+
},
|
|
742
|
+
"jsx-a11y/prefer-tag-over-role": {
|
|
743
|
+
"$ref": "#/definitions/DummyRule"
|
|
744
|
+
},
|
|
745
|
+
"jsx-a11y/role-has-required-aria-props": {
|
|
746
|
+
"$ref": "#/definitions/DummyRule"
|
|
747
|
+
},
|
|
748
|
+
"jsx-a11y/role-supports-aria-props": {
|
|
749
|
+
"$ref": "#/definitions/DummyRule"
|
|
750
|
+
},
|
|
751
|
+
"jsx-a11y/scope": {
|
|
752
|
+
"$ref": "#/definitions/DummyRule"
|
|
753
|
+
},
|
|
754
|
+
"jsx-a11y/tabindex-no-positive": {
|
|
755
|
+
"$ref": "#/definitions/DummyRule"
|
|
756
|
+
},
|
|
757
|
+
"logical-assignment-operators": {
|
|
758
|
+
"$ref": "#/definitions/DummyRule"
|
|
759
|
+
},
|
|
760
|
+
"max-classes-per-file": {
|
|
761
|
+
"$ref": "#/definitions/DummyRule"
|
|
762
|
+
},
|
|
763
|
+
"max-depth": {
|
|
764
|
+
"$ref": "#/definitions/DummyRule"
|
|
765
|
+
},
|
|
766
|
+
"max-lines": {
|
|
767
|
+
"$ref": "#/definitions/DummyRule"
|
|
768
|
+
},
|
|
769
|
+
"max-lines-per-function": {
|
|
770
|
+
"$ref": "#/definitions/DummyRule"
|
|
771
|
+
},
|
|
772
|
+
"max-nested-callbacks": {
|
|
773
|
+
"$ref": "#/definitions/DummyRule"
|
|
774
|
+
},
|
|
775
|
+
"max-params": {
|
|
776
|
+
"$ref": "#/definitions/DummyRule"
|
|
777
|
+
},
|
|
778
|
+
"max-statements": {
|
|
779
|
+
"$ref": "#/definitions/DummyRule"
|
|
780
|
+
},
|
|
781
|
+
"new-cap": {
|
|
782
|
+
"$ref": "#/definitions/DummyRule"
|
|
783
|
+
},
|
|
784
|
+
"nextjs/google-font-display": {
|
|
785
|
+
"$ref": "#/definitions/DummyRule"
|
|
786
|
+
},
|
|
787
|
+
"nextjs/google-font-preconnect": {
|
|
788
|
+
"$ref": "#/definitions/DummyRule"
|
|
789
|
+
},
|
|
790
|
+
"nextjs/inline-script-id": {
|
|
791
|
+
"$ref": "#/definitions/DummyRule"
|
|
792
|
+
},
|
|
793
|
+
"nextjs/next-script-for-ga": {
|
|
794
|
+
"$ref": "#/definitions/DummyRule"
|
|
795
|
+
},
|
|
796
|
+
"nextjs/no-assign-module-variable": {
|
|
797
|
+
"$ref": "#/definitions/DummyRule"
|
|
798
|
+
},
|
|
799
|
+
"nextjs/no-async-client-component": {
|
|
800
|
+
"$ref": "#/definitions/DummyRule"
|
|
801
|
+
},
|
|
802
|
+
"nextjs/no-before-interactive-script-outside-document": {
|
|
803
|
+
"$ref": "#/definitions/DummyRule"
|
|
804
|
+
},
|
|
805
|
+
"nextjs/no-css-tags": {
|
|
806
|
+
"$ref": "#/definitions/DummyRule"
|
|
807
|
+
},
|
|
808
|
+
"nextjs/no-document-import-in-page": {
|
|
809
|
+
"$ref": "#/definitions/DummyRule"
|
|
810
|
+
},
|
|
811
|
+
"nextjs/no-duplicate-head": {
|
|
812
|
+
"$ref": "#/definitions/DummyRule"
|
|
813
|
+
},
|
|
814
|
+
"nextjs/no-head-element": {
|
|
815
|
+
"$ref": "#/definitions/DummyRule"
|
|
816
|
+
},
|
|
817
|
+
"nextjs/no-head-import-in-document": {
|
|
818
|
+
"$ref": "#/definitions/DummyRule"
|
|
819
|
+
},
|
|
820
|
+
"nextjs/no-html-link-for-pages": {
|
|
821
|
+
"$ref": "#/definitions/DummyRule"
|
|
822
|
+
},
|
|
823
|
+
"nextjs/no-img-element": {
|
|
824
|
+
"$ref": "#/definitions/DummyRule"
|
|
825
|
+
},
|
|
826
|
+
"nextjs/no-page-custom-font": {
|
|
827
|
+
"$ref": "#/definitions/DummyRule"
|
|
828
|
+
},
|
|
829
|
+
"nextjs/no-script-component-in-head": {
|
|
830
|
+
"$ref": "#/definitions/DummyRule"
|
|
831
|
+
},
|
|
832
|
+
"nextjs/no-styled-jsx-in-document": {
|
|
833
|
+
"$ref": "#/definitions/DummyRule"
|
|
834
|
+
},
|
|
835
|
+
"nextjs/no-sync-scripts": {
|
|
836
|
+
"$ref": "#/definitions/DummyRule"
|
|
837
|
+
},
|
|
838
|
+
"nextjs/no-title-in-document-head": {
|
|
839
|
+
"$ref": "#/definitions/DummyRule"
|
|
840
|
+
},
|
|
841
|
+
"nextjs/no-typos": {
|
|
842
|
+
"$ref": "#/definitions/DummyRule"
|
|
843
|
+
},
|
|
844
|
+
"nextjs/no-unwanted-polyfillio": {
|
|
845
|
+
"$ref": "#/definitions/DummyRule"
|
|
846
|
+
},
|
|
847
|
+
"no-alert": {
|
|
848
|
+
"$ref": "#/definitions/DummyRule"
|
|
849
|
+
},
|
|
850
|
+
"no-array-constructor": {
|
|
851
|
+
"$ref": "#/definitions/DummyRule"
|
|
852
|
+
},
|
|
853
|
+
"no-async-promise-executor": {
|
|
854
|
+
"$ref": "#/definitions/DummyRule"
|
|
855
|
+
},
|
|
856
|
+
"no-await-in-loop": {
|
|
857
|
+
"$ref": "#/definitions/DummyRule"
|
|
858
|
+
},
|
|
859
|
+
"no-bitwise": {
|
|
860
|
+
"$ref": "#/definitions/DummyRule"
|
|
861
|
+
},
|
|
862
|
+
"no-caller": {
|
|
863
|
+
"$ref": "#/definitions/DummyRule"
|
|
864
|
+
},
|
|
865
|
+
"no-case-declarations": {
|
|
866
|
+
"$ref": "#/definitions/DummyRule"
|
|
867
|
+
},
|
|
868
|
+
"no-class-assign": {
|
|
869
|
+
"$ref": "#/definitions/DummyRule"
|
|
870
|
+
},
|
|
871
|
+
"no-compare-neg-zero": {
|
|
872
|
+
"$ref": "#/definitions/DummyRule"
|
|
873
|
+
},
|
|
874
|
+
"no-cond-assign": {
|
|
875
|
+
"$ref": "#/definitions/DummyRule"
|
|
876
|
+
},
|
|
877
|
+
"no-console": {
|
|
878
|
+
"$ref": "#/definitions/DummyRule"
|
|
879
|
+
},
|
|
880
|
+
"no-const-assign": {
|
|
881
|
+
"$ref": "#/definitions/DummyRule"
|
|
882
|
+
},
|
|
883
|
+
"no-constant-binary-expression": {
|
|
884
|
+
"$ref": "#/definitions/DummyRule"
|
|
885
|
+
},
|
|
886
|
+
"no-constant-condition": {
|
|
887
|
+
"$ref": "#/definitions/DummyRule"
|
|
888
|
+
},
|
|
889
|
+
"no-constructor-return": {
|
|
890
|
+
"$ref": "#/definitions/DummyRule"
|
|
891
|
+
},
|
|
892
|
+
"no-continue": {
|
|
893
|
+
"$ref": "#/definitions/DummyRule"
|
|
894
|
+
},
|
|
895
|
+
"no-control-regex": {
|
|
896
|
+
"$ref": "#/definitions/DummyRule"
|
|
897
|
+
},
|
|
898
|
+
"no-debugger": {
|
|
899
|
+
"$ref": "#/definitions/DummyRule"
|
|
900
|
+
},
|
|
901
|
+
"no-delete-var": {
|
|
902
|
+
"$ref": "#/definitions/DummyRule"
|
|
903
|
+
},
|
|
904
|
+
"no-div-regex": {
|
|
905
|
+
"$ref": "#/definitions/DummyRule"
|
|
906
|
+
},
|
|
907
|
+
"no-dupe-class-members": {
|
|
908
|
+
"$ref": "#/definitions/DummyRule"
|
|
909
|
+
},
|
|
910
|
+
"no-dupe-else-if": {
|
|
911
|
+
"$ref": "#/definitions/DummyRule"
|
|
912
|
+
},
|
|
913
|
+
"no-dupe-keys": {
|
|
914
|
+
"$ref": "#/definitions/DummyRule"
|
|
915
|
+
},
|
|
916
|
+
"no-duplicate-case": {
|
|
917
|
+
"$ref": "#/definitions/DummyRule"
|
|
918
|
+
},
|
|
919
|
+
"no-duplicate-imports": {
|
|
920
|
+
"$ref": "#/definitions/DummyRule"
|
|
921
|
+
},
|
|
922
|
+
"no-else-return": {
|
|
923
|
+
"$ref": "#/definitions/DummyRule"
|
|
924
|
+
},
|
|
925
|
+
"no-empty": {
|
|
926
|
+
"$ref": "#/definitions/DummyRule"
|
|
927
|
+
},
|
|
928
|
+
"no-empty-character-class": {
|
|
929
|
+
"$ref": "#/definitions/DummyRule"
|
|
930
|
+
},
|
|
931
|
+
"no-empty-function": {
|
|
932
|
+
"$ref": "#/definitions/DummyRule"
|
|
933
|
+
},
|
|
934
|
+
"no-empty-pattern": {
|
|
935
|
+
"$ref": "#/definitions/DummyRule"
|
|
936
|
+
},
|
|
937
|
+
"no-empty-static-block": {
|
|
938
|
+
"$ref": "#/definitions/DummyRule"
|
|
939
|
+
},
|
|
940
|
+
"no-eq-null": {
|
|
941
|
+
"$ref": "#/definitions/DummyRule"
|
|
942
|
+
},
|
|
943
|
+
"no-eval": {
|
|
944
|
+
"$ref": "#/definitions/DummyRule"
|
|
945
|
+
},
|
|
946
|
+
"no-ex-assign": {
|
|
947
|
+
"$ref": "#/definitions/DummyRule"
|
|
948
|
+
},
|
|
949
|
+
"no-extend-native": {
|
|
950
|
+
"$ref": "#/definitions/DummyRule"
|
|
951
|
+
},
|
|
952
|
+
"no-extra-bind": {
|
|
953
|
+
"$ref": "#/definitions/DummyRule"
|
|
954
|
+
},
|
|
955
|
+
"no-extra-boolean-cast": {
|
|
956
|
+
"$ref": "#/definitions/DummyRule"
|
|
957
|
+
},
|
|
958
|
+
"no-extra-label": {
|
|
959
|
+
"$ref": "#/definitions/DummyRule"
|
|
960
|
+
},
|
|
961
|
+
"no-fallthrough": {
|
|
962
|
+
"$ref": "#/definitions/DummyRule"
|
|
963
|
+
},
|
|
964
|
+
"no-func-assign": {
|
|
965
|
+
"$ref": "#/definitions/DummyRule"
|
|
966
|
+
},
|
|
967
|
+
"no-global-assign": {
|
|
968
|
+
"$ref": "#/definitions/DummyRule"
|
|
969
|
+
},
|
|
970
|
+
"no-implicit-coercion": {
|
|
971
|
+
"$ref": "#/definitions/DummyRule"
|
|
972
|
+
},
|
|
973
|
+
"no-implicit-globals": {
|
|
974
|
+
"$ref": "#/definitions/DummyRule"
|
|
975
|
+
},
|
|
976
|
+
"no-import-assign": {
|
|
977
|
+
"$ref": "#/definitions/DummyRule"
|
|
978
|
+
},
|
|
979
|
+
"no-inline-comments": {
|
|
980
|
+
"$ref": "#/definitions/DummyRule"
|
|
981
|
+
},
|
|
982
|
+
"no-inner-declarations": {
|
|
983
|
+
"$ref": "#/definitions/DummyRule"
|
|
984
|
+
},
|
|
985
|
+
"no-invalid-regexp": {
|
|
986
|
+
"$ref": "#/definitions/DummyRule"
|
|
987
|
+
},
|
|
988
|
+
"no-irregular-whitespace": {
|
|
989
|
+
"$ref": "#/definitions/DummyRule"
|
|
990
|
+
},
|
|
991
|
+
"no-iterator": {
|
|
992
|
+
"$ref": "#/definitions/DummyRule"
|
|
993
|
+
},
|
|
994
|
+
"no-label-var": {
|
|
995
|
+
"$ref": "#/definitions/DummyRule"
|
|
996
|
+
},
|
|
997
|
+
"no-labels": {
|
|
998
|
+
"$ref": "#/definitions/DummyRule"
|
|
999
|
+
},
|
|
1000
|
+
"no-lone-blocks": {
|
|
1001
|
+
"$ref": "#/definitions/DummyRule"
|
|
1002
|
+
},
|
|
1003
|
+
"no-lonely-if": {
|
|
1004
|
+
"$ref": "#/definitions/DummyRule"
|
|
1005
|
+
},
|
|
1006
|
+
"no-loop-func": {
|
|
1007
|
+
"$ref": "#/definitions/DummyRule"
|
|
1008
|
+
},
|
|
1009
|
+
"no-loss-of-precision": {
|
|
1010
|
+
"$ref": "#/definitions/DummyRule"
|
|
1011
|
+
},
|
|
1012
|
+
"no-magic-numbers": {
|
|
1013
|
+
"$ref": "#/definitions/DummyRule"
|
|
1014
|
+
},
|
|
1015
|
+
"no-misleading-character-class": {
|
|
1016
|
+
"$ref": "#/definitions/DummyRule"
|
|
1017
|
+
},
|
|
1018
|
+
"no-multi-assign": {
|
|
1019
|
+
"$ref": "#/definitions/DummyRule"
|
|
1020
|
+
},
|
|
1021
|
+
"no-multi-str": {
|
|
1022
|
+
"$ref": "#/definitions/DummyRule"
|
|
1023
|
+
},
|
|
1024
|
+
"no-negated-condition": {
|
|
1025
|
+
"$ref": "#/definitions/DummyRule"
|
|
1026
|
+
},
|
|
1027
|
+
"no-nested-ternary": {
|
|
1028
|
+
"$ref": "#/definitions/DummyRule"
|
|
1029
|
+
},
|
|
1030
|
+
"no-new": {
|
|
1031
|
+
"$ref": "#/definitions/DummyRule"
|
|
1032
|
+
},
|
|
1033
|
+
"no-new-func": {
|
|
1034
|
+
"$ref": "#/definitions/DummyRule"
|
|
1035
|
+
},
|
|
1036
|
+
"no-new-native-nonconstructor": {
|
|
1037
|
+
"$ref": "#/definitions/DummyRule"
|
|
1038
|
+
},
|
|
1039
|
+
"no-new-wrappers": {
|
|
1040
|
+
"$ref": "#/definitions/DummyRule"
|
|
1041
|
+
},
|
|
1042
|
+
"no-nonoctal-decimal-escape": {
|
|
1043
|
+
"$ref": "#/definitions/DummyRule"
|
|
1044
|
+
},
|
|
1045
|
+
"no-obj-calls": {
|
|
1046
|
+
"$ref": "#/definitions/DummyRule"
|
|
1047
|
+
},
|
|
1048
|
+
"no-object-constructor": {
|
|
1049
|
+
"$ref": "#/definitions/DummyRule"
|
|
1050
|
+
},
|
|
1051
|
+
"no-param-reassign": {
|
|
1052
|
+
"$ref": "#/definitions/DummyRule"
|
|
1053
|
+
},
|
|
1054
|
+
"no-plusplus": {
|
|
1055
|
+
"$ref": "#/definitions/DummyRule"
|
|
1056
|
+
},
|
|
1057
|
+
"no-promise-executor-return": {
|
|
1058
|
+
"$ref": "#/definitions/DummyRule"
|
|
1059
|
+
},
|
|
1060
|
+
"no-proto": {
|
|
1061
|
+
"$ref": "#/definitions/DummyRule"
|
|
1062
|
+
},
|
|
1063
|
+
"no-prototype-builtins": {
|
|
1064
|
+
"$ref": "#/definitions/DummyRule"
|
|
1065
|
+
},
|
|
1066
|
+
"no-redeclare": {
|
|
1067
|
+
"$ref": "#/definitions/DummyRule"
|
|
1068
|
+
},
|
|
1069
|
+
"no-regex-spaces": {
|
|
1070
|
+
"$ref": "#/definitions/DummyRule"
|
|
1071
|
+
},
|
|
1072
|
+
"no-restricted-exports": {
|
|
1073
|
+
"$ref": "#/definitions/DummyRule"
|
|
1074
|
+
},
|
|
1075
|
+
"no-restricted-globals": {
|
|
1076
|
+
"$ref": "#/definitions/DummyRule"
|
|
1077
|
+
},
|
|
1078
|
+
"no-restricted-imports": {
|
|
1079
|
+
"$ref": "#/definitions/DummyRule"
|
|
1080
|
+
},
|
|
1081
|
+
"no-restricted-properties": {
|
|
1082
|
+
"$ref": "#/definitions/DummyRule"
|
|
1083
|
+
},
|
|
1084
|
+
"no-return-assign": {
|
|
1085
|
+
"$ref": "#/definitions/DummyRule"
|
|
1086
|
+
},
|
|
1087
|
+
"no-script-url": {
|
|
1088
|
+
"$ref": "#/definitions/DummyRule"
|
|
1089
|
+
},
|
|
1090
|
+
"no-self-assign": {
|
|
1091
|
+
"$ref": "#/definitions/DummyRule"
|
|
1092
|
+
},
|
|
1093
|
+
"no-self-compare": {
|
|
1094
|
+
"$ref": "#/definitions/DummyRule"
|
|
1095
|
+
},
|
|
1096
|
+
"no-sequences": {
|
|
1097
|
+
"$ref": "#/definitions/DummyRule"
|
|
1098
|
+
},
|
|
1099
|
+
"no-setter-return": {
|
|
1100
|
+
"$ref": "#/definitions/DummyRule"
|
|
1101
|
+
},
|
|
1102
|
+
"no-shadow": {
|
|
1103
|
+
"$ref": "#/definitions/DummyRule"
|
|
1104
|
+
},
|
|
1105
|
+
"no-shadow-restricted-names": {
|
|
1106
|
+
"$ref": "#/definitions/DummyRule"
|
|
1107
|
+
},
|
|
1108
|
+
"no-sparse-arrays": {
|
|
1109
|
+
"$ref": "#/definitions/DummyRule"
|
|
1110
|
+
},
|
|
1111
|
+
"no-template-curly-in-string": {
|
|
1112
|
+
"$ref": "#/definitions/DummyRule"
|
|
1113
|
+
},
|
|
1114
|
+
"no-ternary": {
|
|
1115
|
+
"$ref": "#/definitions/DummyRule"
|
|
1116
|
+
},
|
|
1117
|
+
"no-this-before-super": {
|
|
1118
|
+
"$ref": "#/definitions/DummyRule"
|
|
1119
|
+
},
|
|
1120
|
+
"no-throw-literal": {
|
|
1121
|
+
"$ref": "#/definitions/DummyRule"
|
|
1122
|
+
},
|
|
1123
|
+
"no-unassigned-vars": {
|
|
1124
|
+
"$ref": "#/definitions/DummyRule"
|
|
1125
|
+
},
|
|
1126
|
+
"no-undef": {
|
|
1127
|
+
"$ref": "#/definitions/DummyRule"
|
|
1128
|
+
},
|
|
1129
|
+
"no-undefined": {
|
|
1130
|
+
"$ref": "#/definitions/DummyRule"
|
|
1131
|
+
},
|
|
1132
|
+
"no-underscore-dangle": {
|
|
1133
|
+
"$ref": "#/definitions/DummyRule"
|
|
1134
|
+
},
|
|
1135
|
+
"no-unexpected-multiline": {
|
|
1136
|
+
"$ref": "#/definitions/DummyRule"
|
|
1137
|
+
},
|
|
1138
|
+
"no-unmodified-loop-condition": {
|
|
1139
|
+
"$ref": "#/definitions/DummyRule"
|
|
1140
|
+
},
|
|
1141
|
+
"no-unneeded-ternary": {
|
|
1142
|
+
"$ref": "#/definitions/DummyRule"
|
|
1143
|
+
},
|
|
1144
|
+
"no-unreachable": {
|
|
1145
|
+
"$ref": "#/definitions/DummyRule"
|
|
1146
|
+
},
|
|
1147
|
+
"no-unsafe-finally": {
|
|
1148
|
+
"$ref": "#/definitions/DummyRule"
|
|
1149
|
+
},
|
|
1150
|
+
"no-unsafe-negation": {
|
|
1151
|
+
"$ref": "#/definitions/DummyRule"
|
|
1152
|
+
},
|
|
1153
|
+
"no-unsafe-optional-chaining": {
|
|
1154
|
+
"$ref": "#/definitions/DummyRule"
|
|
1155
|
+
},
|
|
1156
|
+
"no-unused-expressions": {
|
|
1157
|
+
"$ref": "#/definitions/DummyRule"
|
|
1158
|
+
},
|
|
1159
|
+
"no-unused-labels": {
|
|
1160
|
+
"$ref": "#/definitions/DummyRule"
|
|
1161
|
+
},
|
|
1162
|
+
"no-unused-private-class-members": {
|
|
1163
|
+
"$ref": "#/definitions/DummyRule"
|
|
1164
|
+
},
|
|
1165
|
+
"no-unused-vars": {
|
|
1166
|
+
"$ref": "#/definitions/DummyRule"
|
|
1167
|
+
},
|
|
1168
|
+
"no-use-before-define": {
|
|
1169
|
+
"$ref": "#/definitions/DummyRule"
|
|
1170
|
+
},
|
|
1171
|
+
"no-useless-assignment": {
|
|
1172
|
+
"$ref": "#/definitions/DummyRule"
|
|
1173
|
+
},
|
|
1174
|
+
"no-useless-backreference": {
|
|
1175
|
+
"$ref": "#/definitions/DummyRule"
|
|
1176
|
+
},
|
|
1177
|
+
"no-useless-call": {
|
|
1178
|
+
"$ref": "#/definitions/DummyRule"
|
|
1179
|
+
},
|
|
1180
|
+
"no-useless-catch": {
|
|
1181
|
+
"$ref": "#/definitions/DummyRule"
|
|
1182
|
+
},
|
|
1183
|
+
"no-useless-computed-key": {
|
|
1184
|
+
"$ref": "#/definitions/DummyRule"
|
|
1185
|
+
},
|
|
1186
|
+
"no-useless-concat": {
|
|
1187
|
+
"$ref": "#/definitions/DummyRule"
|
|
1188
|
+
},
|
|
1189
|
+
"no-useless-constructor": {
|
|
1190
|
+
"$ref": "#/definitions/DummyRule"
|
|
1191
|
+
},
|
|
1192
|
+
"no-useless-escape": {
|
|
1193
|
+
"$ref": "#/definitions/DummyRule"
|
|
1194
|
+
},
|
|
1195
|
+
"no-useless-rename": {
|
|
1196
|
+
"$ref": "#/definitions/DummyRule"
|
|
1197
|
+
},
|
|
1198
|
+
"no-useless-return": {
|
|
1199
|
+
"$ref": "#/definitions/DummyRule"
|
|
1200
|
+
},
|
|
1201
|
+
"no-var": {
|
|
1202
|
+
"$ref": "#/definitions/DummyRule"
|
|
1203
|
+
},
|
|
1204
|
+
"no-void": {
|
|
1205
|
+
"$ref": "#/definitions/DummyRule"
|
|
1206
|
+
},
|
|
1207
|
+
"no-warning-comments": {
|
|
1208
|
+
"$ref": "#/definitions/DummyRule"
|
|
1209
|
+
},
|
|
1210
|
+
"no-with": {
|
|
1211
|
+
"$ref": "#/definitions/DummyRule"
|
|
1212
|
+
},
|
|
1213
|
+
"node/global-require": {
|
|
1214
|
+
"$ref": "#/definitions/DummyRule"
|
|
1215
|
+
},
|
|
1216
|
+
"node/handle-callback-err": {
|
|
1217
|
+
"$ref": "#/definitions/DummyRule"
|
|
1218
|
+
},
|
|
1219
|
+
"node/no-exports-assign": {
|
|
1220
|
+
"$ref": "#/definitions/DummyRule"
|
|
1221
|
+
},
|
|
1222
|
+
"node/no-new-require": {
|
|
1223
|
+
"$ref": "#/definitions/DummyRule"
|
|
1224
|
+
},
|
|
1225
|
+
"node/no-path-concat": {
|
|
1226
|
+
"$ref": "#/definitions/DummyRule"
|
|
1227
|
+
},
|
|
1228
|
+
"node/no-process-env": {
|
|
1229
|
+
"$ref": "#/definitions/DummyRule"
|
|
1230
|
+
},
|
|
1231
|
+
"object-shorthand": {
|
|
1232
|
+
"$ref": "#/definitions/DummyRule"
|
|
1233
|
+
},
|
|
1234
|
+
"operator-assignment": {
|
|
1235
|
+
"$ref": "#/definitions/DummyRule"
|
|
1236
|
+
},
|
|
1237
|
+
"oxc/approx-constant": {
|
|
1238
|
+
"$ref": "#/definitions/DummyRule"
|
|
1239
|
+
},
|
|
1240
|
+
"oxc/bad-array-method-on-arguments": {
|
|
1241
|
+
"$ref": "#/definitions/DummyRule"
|
|
1242
|
+
},
|
|
1243
|
+
"oxc/bad-bitwise-operator": {
|
|
1244
|
+
"$ref": "#/definitions/DummyRule"
|
|
1245
|
+
},
|
|
1246
|
+
"oxc/bad-char-at-comparison": {
|
|
1247
|
+
"$ref": "#/definitions/DummyRule"
|
|
1248
|
+
},
|
|
1249
|
+
"oxc/bad-comparison-sequence": {
|
|
1250
|
+
"$ref": "#/definitions/DummyRule"
|
|
1251
|
+
},
|
|
1252
|
+
"oxc/bad-min-max-func": {
|
|
1253
|
+
"$ref": "#/definitions/DummyRule"
|
|
1254
|
+
},
|
|
1255
|
+
"oxc/bad-object-literal-comparison": {
|
|
1256
|
+
"$ref": "#/definitions/DummyRule"
|
|
1257
|
+
},
|
|
1258
|
+
"oxc/bad-replace-all-arg": {
|
|
1259
|
+
"$ref": "#/definitions/DummyRule"
|
|
1260
|
+
},
|
|
1261
|
+
"oxc/branches-sharing-code": {
|
|
1262
|
+
"$ref": "#/definitions/DummyRule"
|
|
1263
|
+
},
|
|
1264
|
+
"oxc/const-comparisons": {
|
|
1265
|
+
"$ref": "#/definitions/DummyRule"
|
|
1266
|
+
},
|
|
1267
|
+
"oxc/double-comparisons": {
|
|
1268
|
+
"$ref": "#/definitions/DummyRule"
|
|
1269
|
+
},
|
|
1270
|
+
"oxc/erasing-op": {
|
|
1271
|
+
"$ref": "#/definitions/DummyRule"
|
|
1272
|
+
},
|
|
1273
|
+
"oxc/misrefactored-assign-op": {
|
|
1274
|
+
"$ref": "#/definitions/DummyRule"
|
|
1275
|
+
},
|
|
1276
|
+
"oxc/missing-throw": {
|
|
1277
|
+
"$ref": "#/definitions/DummyRule"
|
|
1278
|
+
},
|
|
1279
|
+
"oxc/no-accumulating-spread": {
|
|
1280
|
+
"$ref": "#/definitions/DummyRule"
|
|
1281
|
+
},
|
|
1282
|
+
"oxc/no-async-await": {
|
|
1283
|
+
"$ref": "#/definitions/DummyRule"
|
|
1284
|
+
},
|
|
1285
|
+
"oxc/no-async-endpoint-handlers": {
|
|
1286
|
+
"$ref": "#/definitions/DummyRule"
|
|
1287
|
+
},
|
|
1288
|
+
"oxc/no-barrel-file": {
|
|
1289
|
+
"$ref": "#/definitions/DummyRule"
|
|
1290
|
+
},
|
|
1291
|
+
"oxc/no-const-enum": {
|
|
1292
|
+
"$ref": "#/definitions/DummyRule"
|
|
1293
|
+
},
|
|
1294
|
+
"oxc/no-map-spread": {
|
|
1295
|
+
"$ref": "#/definitions/DummyRule"
|
|
1296
|
+
},
|
|
1297
|
+
"oxc/no-optional-chaining": {
|
|
1298
|
+
"$ref": "#/definitions/DummyRule"
|
|
1299
|
+
},
|
|
1300
|
+
"oxc/no-rest-spread-properties": {
|
|
1301
|
+
"$ref": "#/definitions/DummyRule"
|
|
1302
|
+
},
|
|
1303
|
+
"oxc/no-this-in-exported-function": {
|
|
1304
|
+
"$ref": "#/definitions/DummyRule"
|
|
1305
|
+
},
|
|
1306
|
+
"oxc/number-arg-out-of-range": {
|
|
1307
|
+
"$ref": "#/definitions/DummyRule"
|
|
1308
|
+
},
|
|
1309
|
+
"oxc/only-used-in-recursion": {
|
|
1310
|
+
"$ref": "#/definitions/DummyRule"
|
|
1311
|
+
},
|
|
1312
|
+
"oxc/uninvoked-array-callback": {
|
|
1313
|
+
"$ref": "#/definitions/DummyRule"
|
|
1314
|
+
},
|
|
1315
|
+
"prefer-arrow-callback": {
|
|
1316
|
+
"$ref": "#/definitions/DummyRule"
|
|
1317
|
+
},
|
|
1318
|
+
"prefer-const": {
|
|
1319
|
+
"$ref": "#/definitions/DummyRule"
|
|
1320
|
+
},
|
|
1321
|
+
"prefer-destructuring": {
|
|
1322
|
+
"$ref": "#/definitions/DummyRule"
|
|
1323
|
+
},
|
|
1324
|
+
"prefer-exponentiation-operator": {
|
|
1325
|
+
"$ref": "#/definitions/DummyRule"
|
|
1326
|
+
},
|
|
1327
|
+
"prefer-numeric-literals": {
|
|
1328
|
+
"$ref": "#/definitions/DummyRule"
|
|
1329
|
+
},
|
|
1330
|
+
"prefer-object-has-own": {
|
|
1331
|
+
"$ref": "#/definitions/DummyRule"
|
|
1332
|
+
},
|
|
1333
|
+
"prefer-object-spread": {
|
|
1334
|
+
"$ref": "#/definitions/DummyRule"
|
|
1335
|
+
},
|
|
1336
|
+
"prefer-promise-reject-errors": {
|
|
1337
|
+
"$ref": "#/definitions/DummyRule"
|
|
1338
|
+
},
|
|
1339
|
+
"prefer-regex-literals": {
|
|
1340
|
+
"$ref": "#/definitions/DummyRule"
|
|
1341
|
+
},
|
|
1342
|
+
"prefer-rest-params": {
|
|
1343
|
+
"$ref": "#/definitions/DummyRule"
|
|
1344
|
+
},
|
|
1345
|
+
"prefer-spread": {
|
|
1346
|
+
"$ref": "#/definitions/DummyRule"
|
|
1347
|
+
},
|
|
1348
|
+
"prefer-template": {
|
|
1349
|
+
"$ref": "#/definitions/DummyRule"
|
|
1350
|
+
},
|
|
1351
|
+
"preserve-caught-error": {
|
|
1352
|
+
"$ref": "#/definitions/DummyRule"
|
|
1353
|
+
},
|
|
1354
|
+
"promise/always-return": {
|
|
1355
|
+
"$ref": "#/definitions/DummyRule"
|
|
1356
|
+
},
|
|
1357
|
+
"promise/avoid-new": {
|
|
1358
|
+
"$ref": "#/definitions/DummyRule"
|
|
1359
|
+
},
|
|
1360
|
+
"promise/catch-or-return": {
|
|
1361
|
+
"$ref": "#/definitions/DummyRule"
|
|
1362
|
+
},
|
|
1363
|
+
"promise/no-callback-in-promise": {
|
|
1364
|
+
"$ref": "#/definitions/DummyRule"
|
|
1365
|
+
},
|
|
1366
|
+
"promise/no-multiple-resolved": {
|
|
1367
|
+
"$ref": "#/definitions/DummyRule"
|
|
1368
|
+
},
|
|
1369
|
+
"promise/no-nesting": {
|
|
1370
|
+
"$ref": "#/definitions/DummyRule"
|
|
1371
|
+
},
|
|
1372
|
+
"promise/no-new-statics": {
|
|
1373
|
+
"$ref": "#/definitions/DummyRule"
|
|
1374
|
+
},
|
|
1375
|
+
"promise/no-promise-in-callback": {
|
|
1376
|
+
"$ref": "#/definitions/DummyRule"
|
|
1377
|
+
},
|
|
1378
|
+
"promise/no-return-in-finally": {
|
|
1379
|
+
"$ref": "#/definitions/DummyRule"
|
|
1380
|
+
},
|
|
1381
|
+
"promise/no-return-wrap": {
|
|
1382
|
+
"$ref": "#/definitions/DummyRule"
|
|
1383
|
+
},
|
|
1384
|
+
"promise/param-names": {
|
|
1385
|
+
"$ref": "#/definitions/DummyRule"
|
|
1386
|
+
},
|
|
1387
|
+
"promise/prefer-await-to-callbacks": {
|
|
1388
|
+
"$ref": "#/definitions/DummyRule"
|
|
1389
|
+
},
|
|
1390
|
+
"promise/prefer-await-to-then": {
|
|
1391
|
+
"$ref": "#/definitions/DummyRule"
|
|
1392
|
+
},
|
|
1393
|
+
"promise/prefer-catch": {
|
|
1394
|
+
"$ref": "#/definitions/DummyRule"
|
|
1395
|
+
},
|
|
1396
|
+
"promise/spec-only": {
|
|
1397
|
+
"$ref": "#/definitions/DummyRule"
|
|
1398
|
+
},
|
|
1399
|
+
"promise/valid-params": {
|
|
1400
|
+
"$ref": "#/definitions/DummyRule"
|
|
1401
|
+
},
|
|
1402
|
+
"radix": {
|
|
1403
|
+
"$ref": "#/definitions/DummyRule"
|
|
1404
|
+
},
|
|
1405
|
+
"react-compiler/capitalized-calls": {
|
|
1406
|
+
"$ref": "#/definitions/DummyRule"
|
|
1407
|
+
},
|
|
1408
|
+
"react-compiler/compiler-config": {
|
|
1409
|
+
"$ref": "#/definitions/DummyRule"
|
|
1410
|
+
},
|
|
1411
|
+
"react-compiler/error-boundaries": {
|
|
1412
|
+
"$ref": "#/definitions/DummyRule"
|
|
1413
|
+
},
|
|
1414
|
+
"react-compiler/exhaustive-effect-dependencies": {
|
|
1415
|
+
"$ref": "#/definitions/DummyRule"
|
|
1416
|
+
},
|
|
1417
|
+
"react-compiler/fbt": {
|
|
1418
|
+
"$ref": "#/definitions/DummyRule"
|
|
1419
|
+
},
|
|
1420
|
+
"react-compiler/gating": {
|
|
1421
|
+
"$ref": "#/definitions/DummyRule"
|
|
1422
|
+
},
|
|
1423
|
+
"react-compiler/globals": {
|
|
1424
|
+
"$ref": "#/definitions/DummyRule"
|
|
1425
|
+
},
|
|
1426
|
+
"react-compiler/hooks": {
|
|
1427
|
+
"$ref": "#/definitions/DummyRule"
|
|
1428
|
+
},
|
|
1429
|
+
"react-compiler/immutability": {
|
|
1430
|
+
"$ref": "#/definitions/DummyRule"
|
|
1431
|
+
},
|
|
1432
|
+
"react-compiler/incompatible-library": {
|
|
1433
|
+
"$ref": "#/definitions/DummyRule"
|
|
1434
|
+
},
|
|
1435
|
+
"react-compiler/invariant": {
|
|
1436
|
+
"$ref": "#/definitions/DummyRule"
|
|
1437
|
+
},
|
|
1438
|
+
"react-compiler/memo-dependencies": {
|
|
1439
|
+
"$ref": "#/definitions/DummyRule"
|
|
1440
|
+
},
|
|
1441
|
+
"react-compiler/memoized-effect-dependencies": {
|
|
1442
|
+
"$ref": "#/definitions/DummyRule"
|
|
1443
|
+
},
|
|
1444
|
+
"react-compiler/no-deriving-state-in-effects": {
|
|
1445
|
+
"$ref": "#/definitions/DummyRule"
|
|
1446
|
+
},
|
|
1447
|
+
"react-compiler/preserve-manual-memoization": {
|
|
1448
|
+
"$ref": "#/definitions/DummyRule"
|
|
1449
|
+
},
|
|
1450
|
+
"react-compiler/purity": {
|
|
1451
|
+
"$ref": "#/definitions/DummyRule"
|
|
1452
|
+
},
|
|
1453
|
+
"react-compiler/react-compiler-rule": {
|
|
1454
|
+
"$ref": "#/definitions/DummyRule"
|
|
1455
|
+
},
|
|
1456
|
+
"react-compiler/refs": {
|
|
1457
|
+
"$ref": "#/definitions/DummyRule"
|
|
1458
|
+
},
|
|
1459
|
+
"react-compiler/rule-suppression": {
|
|
1460
|
+
"$ref": "#/definitions/DummyRule"
|
|
1461
|
+
},
|
|
1462
|
+
"react-compiler/set-state-in-effect": {
|
|
1463
|
+
"$ref": "#/definitions/DummyRule"
|
|
1464
|
+
},
|
|
1465
|
+
"react-compiler/set-state-in-render": {
|
|
1466
|
+
"$ref": "#/definitions/DummyRule"
|
|
1467
|
+
},
|
|
1468
|
+
"react-compiler/static-components": {
|
|
1469
|
+
"$ref": "#/definitions/DummyRule"
|
|
1470
|
+
},
|
|
1471
|
+
"react-compiler/syntax": {
|
|
1472
|
+
"$ref": "#/definitions/DummyRule"
|
|
1473
|
+
},
|
|
1474
|
+
"react-compiler/todo-rule": {
|
|
1475
|
+
"$ref": "#/definitions/DummyRule"
|
|
1476
|
+
},
|
|
1477
|
+
"react-compiler/unsupported-syntax": {
|
|
1478
|
+
"$ref": "#/definitions/DummyRule"
|
|
1479
|
+
},
|
|
1480
|
+
"react-compiler/use-memo": {
|
|
1481
|
+
"$ref": "#/definitions/DummyRule"
|
|
1482
|
+
},
|
|
1483
|
+
"react-compiler/void-use-memo": {
|
|
1484
|
+
"$ref": "#/definitions/DummyRule"
|
|
1485
|
+
},
|
|
1486
|
+
"react-perf/jsx-no-jsx-as-prop": {
|
|
1487
|
+
"$ref": "#/definitions/DummyRule"
|
|
1488
|
+
},
|
|
1489
|
+
"react-perf/jsx-no-new-array-as-prop": {
|
|
1490
|
+
"$ref": "#/definitions/DummyRule"
|
|
1491
|
+
},
|
|
1492
|
+
"react-perf/jsx-no-new-function-as-prop": {
|
|
1493
|
+
"$ref": "#/definitions/DummyRule"
|
|
1494
|
+
},
|
|
1495
|
+
"react-perf/jsx-no-new-object-as-prop": {
|
|
1496
|
+
"$ref": "#/definitions/DummyRule"
|
|
1497
|
+
},
|
|
1498
|
+
"react/button-has-type": {
|
|
1499
|
+
"$ref": "#/definitions/DummyRule"
|
|
1500
|
+
},
|
|
1501
|
+
"react/checked-requires-onchange-or-readonly": {
|
|
1502
|
+
"$ref": "#/definitions/DummyRule"
|
|
1503
|
+
},
|
|
1504
|
+
"react/display-name": {
|
|
1505
|
+
"$ref": "#/definitions/DummyRule"
|
|
1506
|
+
},
|
|
1507
|
+
"react/exhaustive-deps": {
|
|
1508
|
+
"$ref": "#/definitions/DummyRule"
|
|
1509
|
+
},
|
|
1510
|
+
"react/forbid-component-props": {
|
|
1511
|
+
"$ref": "#/definitions/DummyRule"
|
|
1512
|
+
},
|
|
1513
|
+
"react/forbid-dom-props": {
|
|
1514
|
+
"$ref": "#/definitions/DummyRule"
|
|
1515
|
+
},
|
|
1516
|
+
"react/forbid-elements": {
|
|
1517
|
+
"$ref": "#/definitions/DummyRule"
|
|
1518
|
+
},
|
|
1519
|
+
"react/forward-ref-uses-ref": {
|
|
1520
|
+
"$ref": "#/definitions/DummyRule"
|
|
1521
|
+
},
|
|
1522
|
+
"react/hook-use-state": {
|
|
1523
|
+
"$ref": "#/definitions/DummyRule"
|
|
1524
|
+
},
|
|
1525
|
+
"react/iframe-missing-sandbox": {
|
|
1526
|
+
"$ref": "#/definitions/DummyRule"
|
|
1527
|
+
},
|
|
1528
|
+
"react/jsx-boolean-value": {
|
|
1529
|
+
"$ref": "#/definitions/DummyRule"
|
|
1530
|
+
},
|
|
1531
|
+
"react/jsx-curly-brace-presence": {
|
|
1532
|
+
"$ref": "#/definitions/DummyRule"
|
|
1533
|
+
},
|
|
1534
|
+
"react/jsx-filename-extension": {
|
|
1535
|
+
"$ref": "#/definitions/DummyRule"
|
|
1536
|
+
},
|
|
1537
|
+
"react/jsx-fragments": {
|
|
1538
|
+
"$ref": "#/definitions/DummyRule"
|
|
1539
|
+
},
|
|
1540
|
+
"react/jsx-handler-names": {
|
|
1541
|
+
"$ref": "#/definitions/DummyRule"
|
|
1542
|
+
},
|
|
1543
|
+
"react/jsx-key": {
|
|
1544
|
+
"$ref": "#/definitions/DummyRule"
|
|
1545
|
+
},
|
|
1546
|
+
"react/jsx-max-depth": {
|
|
1547
|
+
"$ref": "#/definitions/DummyRule"
|
|
1548
|
+
},
|
|
1549
|
+
"react/jsx-no-comment-textnodes": {
|
|
1550
|
+
"$ref": "#/definitions/DummyRule"
|
|
1551
|
+
},
|
|
1552
|
+
"react/jsx-no-constructed-context-values": {
|
|
1553
|
+
"$ref": "#/definitions/DummyRule"
|
|
1554
|
+
},
|
|
1555
|
+
"react/jsx-no-duplicate-props": {
|
|
1556
|
+
"$ref": "#/definitions/DummyRule"
|
|
1557
|
+
},
|
|
1558
|
+
"react/jsx-no-script-url": {
|
|
1559
|
+
"$ref": "#/definitions/DummyRule"
|
|
1560
|
+
},
|
|
1561
|
+
"react/jsx-no-target-blank": {
|
|
1562
|
+
"$ref": "#/definitions/DummyRule"
|
|
1563
|
+
},
|
|
1564
|
+
"react/jsx-no-undef": {
|
|
1565
|
+
"$ref": "#/definitions/DummyRule"
|
|
1566
|
+
},
|
|
1567
|
+
"react/jsx-no-useless-fragment": {
|
|
1568
|
+
"$ref": "#/definitions/DummyRule"
|
|
1569
|
+
},
|
|
1570
|
+
"react/jsx-pascal-case": {
|
|
1571
|
+
"$ref": "#/definitions/DummyRule"
|
|
1572
|
+
},
|
|
1573
|
+
"react/jsx-props-no-spread-multi": {
|
|
1574
|
+
"$ref": "#/definitions/DummyRule"
|
|
1575
|
+
},
|
|
1576
|
+
"react/jsx-props-no-spreading": {
|
|
1577
|
+
"$ref": "#/definitions/DummyRule"
|
|
1578
|
+
},
|
|
1579
|
+
"react/no-array-index-key": {
|
|
1580
|
+
"$ref": "#/definitions/DummyRule"
|
|
1581
|
+
},
|
|
1582
|
+
"react/no-children-prop": {
|
|
1583
|
+
"$ref": "#/definitions/DummyRule"
|
|
1584
|
+
},
|
|
1585
|
+
"react/no-clone-element": {
|
|
1586
|
+
"$ref": "#/definitions/DummyRule"
|
|
1587
|
+
},
|
|
1588
|
+
"react/no-danger": {
|
|
1589
|
+
"$ref": "#/definitions/DummyRule"
|
|
1590
|
+
},
|
|
1591
|
+
"react/no-danger-with-children": {
|
|
1592
|
+
"$ref": "#/definitions/DummyRule"
|
|
1593
|
+
},
|
|
1594
|
+
"react/no-did-mount-set-state": {
|
|
1595
|
+
"$ref": "#/definitions/DummyRule"
|
|
1596
|
+
},
|
|
1597
|
+
"react/no-did-update-set-state": {
|
|
1598
|
+
"$ref": "#/definitions/DummyRule"
|
|
1599
|
+
},
|
|
1600
|
+
"react/no-direct-mutation-state": {
|
|
1601
|
+
"$ref": "#/definitions/DummyRule"
|
|
1602
|
+
},
|
|
1603
|
+
"react/no-find-dom-node": {
|
|
1604
|
+
"$ref": "#/definitions/DummyRule"
|
|
1605
|
+
},
|
|
1606
|
+
"react/no-is-mounted": {
|
|
1607
|
+
"$ref": "#/definitions/DummyRule"
|
|
1608
|
+
},
|
|
1609
|
+
"react/no-multi-comp": {
|
|
1610
|
+
"$ref": "#/definitions/DummyRule"
|
|
1611
|
+
},
|
|
1612
|
+
"react/no-namespace": {
|
|
1613
|
+
"$ref": "#/definitions/DummyRule"
|
|
1614
|
+
},
|
|
1615
|
+
"react/no-react-children": {
|
|
1616
|
+
"$ref": "#/definitions/DummyRule"
|
|
1617
|
+
},
|
|
1618
|
+
"react/no-redundant-should-component-update": {
|
|
1619
|
+
"$ref": "#/definitions/DummyRule"
|
|
1620
|
+
},
|
|
1621
|
+
"react/no-render-return-value": {
|
|
1622
|
+
"$ref": "#/definitions/DummyRule"
|
|
1623
|
+
},
|
|
1624
|
+
"react/no-set-state": {
|
|
1625
|
+
"$ref": "#/definitions/DummyRule"
|
|
1626
|
+
},
|
|
1627
|
+
"react/no-string-refs": {
|
|
1628
|
+
"$ref": "#/definitions/DummyRule"
|
|
1629
|
+
},
|
|
1630
|
+
"react/no-this-in-sfc": {
|
|
1631
|
+
"$ref": "#/definitions/DummyRule"
|
|
1632
|
+
},
|
|
1633
|
+
"react/no-unescaped-entities": {
|
|
1634
|
+
"$ref": "#/definitions/DummyRule"
|
|
1635
|
+
},
|
|
1636
|
+
"react/no-unknown-property": {
|
|
1637
|
+
"$ref": "#/definitions/DummyRule"
|
|
1638
|
+
},
|
|
1639
|
+
"react/no-unsafe": {
|
|
1640
|
+
"$ref": "#/definitions/DummyRule"
|
|
1641
|
+
},
|
|
1642
|
+
"react/no-will-update-set-state": {
|
|
1643
|
+
"$ref": "#/definitions/DummyRule"
|
|
1644
|
+
},
|
|
1645
|
+
"react/only-export-components": {
|
|
1646
|
+
"$ref": "#/definitions/DummyRule"
|
|
1647
|
+
},
|
|
1648
|
+
"react/prefer-es6-class": {
|
|
1649
|
+
"$ref": "#/definitions/DummyRule"
|
|
1650
|
+
},
|
|
1651
|
+
"react/prefer-function-component": {
|
|
1652
|
+
"$ref": "#/definitions/DummyRule"
|
|
1653
|
+
},
|
|
1654
|
+
"react/react-in-jsx-scope": {
|
|
1655
|
+
"$ref": "#/definitions/DummyRule"
|
|
1656
|
+
},
|
|
1657
|
+
"react/require-render-return": {
|
|
1658
|
+
"$ref": "#/definitions/DummyRule"
|
|
1659
|
+
},
|
|
1660
|
+
"react/rules-of-hooks": {
|
|
1661
|
+
"$ref": "#/definitions/DummyRule"
|
|
1662
|
+
},
|
|
1663
|
+
"react/self-closing-comp": {
|
|
1664
|
+
"$ref": "#/definitions/DummyRule"
|
|
1665
|
+
},
|
|
1666
|
+
"react/state-in-constructor": {
|
|
1667
|
+
"$ref": "#/definitions/DummyRule"
|
|
1668
|
+
},
|
|
1669
|
+
"react/style-prop-object": {
|
|
1670
|
+
"$ref": "#/definitions/DummyRule"
|
|
1671
|
+
},
|
|
1672
|
+
"react/void-dom-elements-no-children": {
|
|
1673
|
+
"$ref": "#/definitions/DummyRule"
|
|
1674
|
+
},
|
|
1675
|
+
"require-await": {
|
|
1676
|
+
"$ref": "#/definitions/DummyRule"
|
|
1677
|
+
},
|
|
1678
|
+
"require-unicode-regexp": {
|
|
1679
|
+
"$ref": "#/definitions/DummyRule"
|
|
1680
|
+
},
|
|
1681
|
+
"require-yield": {
|
|
1682
|
+
"$ref": "#/definitions/DummyRule"
|
|
1683
|
+
},
|
|
1684
|
+
"sort-imports": {
|
|
1685
|
+
"$ref": "#/definitions/DummyRule"
|
|
1686
|
+
},
|
|
1687
|
+
"sort-keys": {
|
|
1688
|
+
"$ref": "#/definitions/DummyRule"
|
|
1689
|
+
},
|
|
1690
|
+
"sort-vars": {
|
|
1691
|
+
"$ref": "#/definitions/DummyRule"
|
|
1692
|
+
},
|
|
1693
|
+
"symbol-description": {
|
|
1694
|
+
"$ref": "#/definitions/DummyRule"
|
|
1695
|
+
},
|
|
1696
|
+
"typescript/adjacent-overload-signatures": {
|
|
1697
|
+
"$ref": "#/definitions/DummyRule"
|
|
1698
|
+
},
|
|
1699
|
+
"typescript/array-type": {
|
|
1700
|
+
"$ref": "#/definitions/DummyRule"
|
|
1701
|
+
},
|
|
1702
|
+
"typescript/await-thenable": {
|
|
1703
|
+
"$ref": "#/definitions/DummyRule"
|
|
1704
|
+
},
|
|
1705
|
+
"typescript/ban-ts-comment": {
|
|
1706
|
+
"$ref": "#/definitions/DummyRule"
|
|
1707
|
+
},
|
|
1708
|
+
"typescript/ban-tslint-comment": {
|
|
1709
|
+
"$ref": "#/definitions/DummyRule"
|
|
1710
|
+
},
|
|
1711
|
+
"typescript/ban-types": {
|
|
1712
|
+
"$ref": "#/definitions/DummyRule"
|
|
1713
|
+
},
|
|
1714
|
+
"typescript/class-literal-property-style": {
|
|
1715
|
+
"$ref": "#/definitions/DummyRule"
|
|
1716
|
+
},
|
|
1717
|
+
"typescript/consistent-generic-constructors": {
|
|
1718
|
+
"$ref": "#/definitions/DummyRule"
|
|
1719
|
+
},
|
|
1720
|
+
"typescript/consistent-indexed-object-style": {
|
|
1721
|
+
"$ref": "#/definitions/DummyRule"
|
|
1722
|
+
},
|
|
1723
|
+
"typescript/consistent-return": {
|
|
1724
|
+
"$ref": "#/definitions/DummyRule"
|
|
1725
|
+
},
|
|
1726
|
+
"typescript/consistent-type-assertions": {
|
|
1727
|
+
"$ref": "#/definitions/DummyRule"
|
|
1728
|
+
},
|
|
1729
|
+
"typescript/consistent-type-definitions": {
|
|
1730
|
+
"$ref": "#/definitions/DummyRule"
|
|
1731
|
+
},
|
|
1732
|
+
"typescript/consistent-type-exports": {
|
|
1733
|
+
"$ref": "#/definitions/DummyRule"
|
|
1734
|
+
},
|
|
1735
|
+
"typescript/consistent-type-imports": {
|
|
1736
|
+
"$ref": "#/definitions/DummyRule"
|
|
1737
|
+
},
|
|
1738
|
+
"typescript/dot-notation": {
|
|
1739
|
+
"$ref": "#/definitions/DummyRule"
|
|
1740
|
+
},
|
|
1741
|
+
"typescript/explicit-function-return-type": {
|
|
1742
|
+
"$ref": "#/definitions/DummyRule"
|
|
1743
|
+
},
|
|
1744
|
+
"typescript/explicit-member-accessibility": {
|
|
1745
|
+
"$ref": "#/definitions/DummyRule"
|
|
1746
|
+
},
|
|
1747
|
+
"typescript/explicit-module-boundary-types": {
|
|
1748
|
+
"$ref": "#/definitions/DummyRule"
|
|
1749
|
+
},
|
|
1750
|
+
"typescript/no-array-delete": {
|
|
1751
|
+
"$ref": "#/definitions/DummyRule"
|
|
1752
|
+
},
|
|
1753
|
+
"typescript/no-base-to-string": {
|
|
1754
|
+
"$ref": "#/definitions/DummyRule"
|
|
1755
|
+
},
|
|
1756
|
+
"typescript/no-confusing-non-null-assertion": {
|
|
1757
|
+
"$ref": "#/definitions/DummyRule"
|
|
1758
|
+
},
|
|
1759
|
+
"typescript/no-confusing-void-expression": {
|
|
1760
|
+
"$ref": "#/definitions/DummyRule"
|
|
1761
|
+
},
|
|
1762
|
+
"typescript/no-deprecated": {
|
|
1763
|
+
"$ref": "#/definitions/DummyRule"
|
|
1764
|
+
},
|
|
1765
|
+
"typescript/no-duplicate-enum-values": {
|
|
1766
|
+
"$ref": "#/definitions/DummyRule"
|
|
1767
|
+
},
|
|
1768
|
+
"typescript/no-duplicate-type-constituents": {
|
|
1769
|
+
"$ref": "#/definitions/DummyRule"
|
|
1770
|
+
},
|
|
1771
|
+
"typescript/no-dynamic-delete": {
|
|
1772
|
+
"$ref": "#/definitions/DummyRule"
|
|
1773
|
+
},
|
|
1774
|
+
"typescript/no-empty-interface": {
|
|
1775
|
+
"$ref": "#/definitions/DummyRule"
|
|
1776
|
+
},
|
|
1777
|
+
"typescript/no-empty-object-type": {
|
|
1778
|
+
"$ref": "#/definitions/DummyRule"
|
|
1779
|
+
},
|
|
1780
|
+
"typescript/no-explicit-any": {
|
|
1781
|
+
"$ref": "#/definitions/DummyRule"
|
|
1782
|
+
},
|
|
1783
|
+
"typescript/no-extra-non-null-assertion": {
|
|
1784
|
+
"$ref": "#/definitions/DummyRule"
|
|
1785
|
+
},
|
|
1786
|
+
"typescript/no-extraneous-class": {
|
|
1787
|
+
"$ref": "#/definitions/DummyRule"
|
|
1788
|
+
},
|
|
1789
|
+
"typescript/no-floating-promises": {
|
|
1790
|
+
"$ref": "#/definitions/DummyRule"
|
|
1791
|
+
},
|
|
1792
|
+
"typescript/no-for-in-array": {
|
|
1793
|
+
"$ref": "#/definitions/DummyRule"
|
|
1794
|
+
},
|
|
1795
|
+
"typescript/no-implied-eval": {
|
|
1796
|
+
"$ref": "#/definitions/DummyRule"
|
|
1797
|
+
},
|
|
1798
|
+
"typescript/no-import-type-side-effects": {
|
|
1799
|
+
"$ref": "#/definitions/DummyRule"
|
|
1800
|
+
},
|
|
1801
|
+
"typescript/no-inferrable-types": {
|
|
1802
|
+
"$ref": "#/definitions/DummyRule"
|
|
1803
|
+
},
|
|
1804
|
+
"typescript/no-invalid-void-type": {
|
|
1805
|
+
"$ref": "#/definitions/DummyRule"
|
|
1806
|
+
},
|
|
1807
|
+
"typescript/no-meaningless-void-operator": {
|
|
1808
|
+
"$ref": "#/definitions/DummyRule"
|
|
1809
|
+
},
|
|
1810
|
+
"typescript/no-misused-new": {
|
|
1811
|
+
"$ref": "#/definitions/DummyRule"
|
|
1812
|
+
},
|
|
1813
|
+
"typescript/no-misused-promises": {
|
|
1814
|
+
"$ref": "#/definitions/DummyRule"
|
|
1815
|
+
},
|
|
1816
|
+
"typescript/no-misused-spread": {
|
|
1817
|
+
"$ref": "#/definitions/DummyRule"
|
|
1818
|
+
},
|
|
1819
|
+
"typescript/no-mixed-enums": {
|
|
1820
|
+
"$ref": "#/definitions/DummyRule"
|
|
1821
|
+
},
|
|
1822
|
+
"typescript/no-namespace": {
|
|
1823
|
+
"$ref": "#/definitions/DummyRule"
|
|
1824
|
+
},
|
|
1825
|
+
"typescript/no-non-null-asserted-nullish-coalescing": {
|
|
1826
|
+
"$ref": "#/definitions/DummyRule"
|
|
1827
|
+
},
|
|
1828
|
+
"typescript/no-non-null-asserted-optional-chain": {
|
|
1829
|
+
"$ref": "#/definitions/DummyRule"
|
|
1830
|
+
},
|
|
1831
|
+
"typescript/no-non-null-assertion": {
|
|
1832
|
+
"$ref": "#/definitions/DummyRule"
|
|
1833
|
+
},
|
|
1834
|
+
"typescript/no-redundant-type-constituents": {
|
|
1835
|
+
"$ref": "#/definitions/DummyRule"
|
|
1836
|
+
},
|
|
1837
|
+
"typescript/no-require-imports": {
|
|
1838
|
+
"$ref": "#/definitions/DummyRule"
|
|
1839
|
+
},
|
|
1840
|
+
"typescript/no-restricted-types": {
|
|
1841
|
+
"$ref": "#/definitions/DummyRule"
|
|
1842
|
+
},
|
|
1843
|
+
"typescript/no-this-alias": {
|
|
1844
|
+
"$ref": "#/definitions/DummyRule"
|
|
1845
|
+
},
|
|
1846
|
+
"typescript/no-unnecessary-boolean-literal-compare": {
|
|
1847
|
+
"$ref": "#/definitions/DummyRule"
|
|
1848
|
+
},
|
|
1849
|
+
"typescript/no-unnecessary-condition": {
|
|
1850
|
+
"$ref": "#/definitions/DummyRule"
|
|
1851
|
+
},
|
|
1852
|
+
"typescript/no-unnecessary-parameter-property-assignment": {
|
|
1853
|
+
"$ref": "#/definitions/DummyRule"
|
|
1854
|
+
},
|
|
1855
|
+
"typescript/no-unnecessary-qualifier": {
|
|
1856
|
+
"$ref": "#/definitions/DummyRule"
|
|
1857
|
+
},
|
|
1858
|
+
"typescript/no-unnecessary-template-expression": {
|
|
1859
|
+
"$ref": "#/definitions/DummyRule"
|
|
1860
|
+
},
|
|
1861
|
+
"typescript/no-unnecessary-type-arguments": {
|
|
1862
|
+
"$ref": "#/definitions/DummyRule"
|
|
1863
|
+
},
|
|
1864
|
+
"typescript/no-unnecessary-type-assertion": {
|
|
1865
|
+
"$ref": "#/definitions/DummyRule"
|
|
1866
|
+
},
|
|
1867
|
+
"typescript/no-unnecessary-type-constraint": {
|
|
1868
|
+
"$ref": "#/definitions/DummyRule"
|
|
1869
|
+
},
|
|
1870
|
+
"typescript/no-unnecessary-type-conversion": {
|
|
1871
|
+
"$ref": "#/definitions/DummyRule"
|
|
1872
|
+
},
|
|
1873
|
+
"typescript/no-unnecessary-type-parameters": {
|
|
1874
|
+
"$ref": "#/definitions/DummyRule"
|
|
1875
|
+
},
|
|
1876
|
+
"typescript/no-unsafe-argument": {
|
|
1877
|
+
"$ref": "#/definitions/DummyRule"
|
|
1878
|
+
},
|
|
1879
|
+
"typescript/no-unsafe-assignment": {
|
|
1880
|
+
"$ref": "#/definitions/DummyRule"
|
|
1881
|
+
},
|
|
1882
|
+
"typescript/no-unsafe-call": {
|
|
1883
|
+
"$ref": "#/definitions/DummyRule"
|
|
1884
|
+
},
|
|
1885
|
+
"typescript/no-unsafe-declaration-merging": {
|
|
1886
|
+
"$ref": "#/definitions/DummyRule"
|
|
1887
|
+
},
|
|
1888
|
+
"typescript/no-unsafe-enum-comparison": {
|
|
1889
|
+
"$ref": "#/definitions/DummyRule"
|
|
1890
|
+
},
|
|
1891
|
+
"typescript/no-unsafe-function-type": {
|
|
1892
|
+
"$ref": "#/definitions/DummyRule"
|
|
1893
|
+
},
|
|
1894
|
+
"typescript/no-unsafe-member-access": {
|
|
1895
|
+
"$ref": "#/definitions/DummyRule"
|
|
1896
|
+
},
|
|
1897
|
+
"typescript/no-unsafe-return": {
|
|
1898
|
+
"$ref": "#/definitions/DummyRule"
|
|
1899
|
+
},
|
|
1900
|
+
"typescript/no-unsafe-type-assertion": {
|
|
1901
|
+
"$ref": "#/definitions/DummyRule"
|
|
1902
|
+
},
|
|
1903
|
+
"typescript/no-unsafe-unary-minus": {
|
|
1904
|
+
"$ref": "#/definitions/DummyRule"
|
|
1905
|
+
},
|
|
1906
|
+
"typescript/no-useless-default-assignment": {
|
|
1907
|
+
"$ref": "#/definitions/DummyRule"
|
|
1908
|
+
},
|
|
1909
|
+
"typescript/no-useless-empty-export": {
|
|
1910
|
+
"$ref": "#/definitions/DummyRule"
|
|
1911
|
+
},
|
|
1912
|
+
"typescript/no-var-requires": {
|
|
1913
|
+
"$ref": "#/definitions/DummyRule"
|
|
1914
|
+
},
|
|
1915
|
+
"typescript/no-wrapper-object-types": {
|
|
1916
|
+
"$ref": "#/definitions/DummyRule"
|
|
1917
|
+
},
|
|
1918
|
+
"typescript/non-nullable-type-assertion-style": {
|
|
1919
|
+
"$ref": "#/definitions/DummyRule"
|
|
1920
|
+
},
|
|
1921
|
+
"typescript/only-throw-error": {
|
|
1922
|
+
"$ref": "#/definitions/DummyRule"
|
|
1923
|
+
},
|
|
1924
|
+
"typescript/parameter-properties": {
|
|
1925
|
+
"$ref": "#/definitions/DummyRule"
|
|
1926
|
+
},
|
|
1927
|
+
"typescript/prefer-as-const": {
|
|
1928
|
+
"$ref": "#/definitions/DummyRule"
|
|
1929
|
+
},
|
|
1930
|
+
"typescript/prefer-enum-initializers": {
|
|
1931
|
+
"$ref": "#/definitions/DummyRule"
|
|
1932
|
+
},
|
|
1933
|
+
"typescript/prefer-find": {
|
|
1934
|
+
"$ref": "#/definitions/DummyRule"
|
|
1935
|
+
},
|
|
1936
|
+
"typescript/prefer-for-of": {
|
|
1937
|
+
"$ref": "#/definitions/DummyRule"
|
|
1938
|
+
},
|
|
1939
|
+
"typescript/prefer-function-type": {
|
|
1940
|
+
"$ref": "#/definitions/DummyRule"
|
|
1941
|
+
},
|
|
1942
|
+
"typescript/prefer-includes": {
|
|
1943
|
+
"$ref": "#/definitions/DummyRule"
|
|
1944
|
+
},
|
|
1945
|
+
"typescript/prefer-literal-enum-member": {
|
|
1946
|
+
"$ref": "#/definitions/DummyRule"
|
|
1947
|
+
},
|
|
1948
|
+
"typescript/prefer-namespace-keyword": {
|
|
1949
|
+
"$ref": "#/definitions/DummyRule"
|
|
1950
|
+
},
|
|
1951
|
+
"typescript/prefer-nullish-coalescing": {
|
|
1952
|
+
"$ref": "#/definitions/DummyRule"
|
|
1953
|
+
},
|
|
1954
|
+
"typescript/prefer-optional-chain": {
|
|
1955
|
+
"$ref": "#/definitions/DummyRule"
|
|
1956
|
+
},
|
|
1957
|
+
"typescript/prefer-promise-reject-errors": {
|
|
1958
|
+
"$ref": "#/definitions/DummyRule"
|
|
1959
|
+
},
|
|
1960
|
+
"typescript/prefer-readonly": {
|
|
1961
|
+
"$ref": "#/definitions/DummyRule"
|
|
1962
|
+
},
|
|
1963
|
+
"typescript/prefer-readonly-parameter-types": {
|
|
1964
|
+
"$ref": "#/definitions/DummyRule"
|
|
1965
|
+
},
|
|
1966
|
+
"typescript/prefer-reduce-type-parameter": {
|
|
1967
|
+
"$ref": "#/definitions/DummyRule"
|
|
1968
|
+
},
|
|
1969
|
+
"typescript/prefer-regexp-exec": {
|
|
1970
|
+
"$ref": "#/definitions/DummyRule"
|
|
1971
|
+
},
|
|
1972
|
+
"typescript/prefer-return-this-type": {
|
|
1973
|
+
"$ref": "#/definitions/DummyRule"
|
|
1974
|
+
},
|
|
1975
|
+
"typescript/prefer-string-starts-ends-with": {
|
|
1976
|
+
"$ref": "#/definitions/DummyRule"
|
|
1977
|
+
},
|
|
1978
|
+
"typescript/prefer-ts-expect-error": {
|
|
1979
|
+
"$ref": "#/definitions/DummyRule"
|
|
1980
|
+
},
|
|
1981
|
+
"typescript/promise-function-async": {
|
|
1982
|
+
"$ref": "#/definitions/DummyRule"
|
|
1983
|
+
},
|
|
1984
|
+
"typescript/related-getter-setter-pairs": {
|
|
1985
|
+
"$ref": "#/definitions/DummyRule"
|
|
1986
|
+
},
|
|
1987
|
+
"typescript/require-array-sort-compare": {
|
|
1988
|
+
"$ref": "#/definitions/DummyRule"
|
|
1989
|
+
},
|
|
1990
|
+
"typescript/require-await": {
|
|
1991
|
+
"$ref": "#/definitions/DummyRule"
|
|
1992
|
+
},
|
|
1993
|
+
"typescript/restrict-plus-operands": {
|
|
1994
|
+
"$ref": "#/definitions/DummyRule"
|
|
1995
|
+
},
|
|
1996
|
+
"typescript/restrict-template-expressions": {
|
|
1997
|
+
"$ref": "#/definitions/DummyRule"
|
|
1998
|
+
},
|
|
1999
|
+
"typescript/return-await": {
|
|
2000
|
+
"$ref": "#/definitions/DummyRule"
|
|
2001
|
+
},
|
|
2002
|
+
"typescript/strict-boolean-expressions": {
|
|
2003
|
+
"$ref": "#/definitions/DummyRule"
|
|
2004
|
+
},
|
|
2005
|
+
"typescript/strict-void-return": {
|
|
2006
|
+
"$ref": "#/definitions/DummyRule"
|
|
2007
|
+
},
|
|
2008
|
+
"typescript/switch-exhaustiveness-check": {
|
|
2009
|
+
"$ref": "#/definitions/DummyRule"
|
|
2010
|
+
},
|
|
2011
|
+
"typescript/triple-slash-reference": {
|
|
2012
|
+
"$ref": "#/definitions/DummyRule"
|
|
2013
|
+
},
|
|
2014
|
+
"typescript/unbound-method": {
|
|
2015
|
+
"$ref": "#/definitions/DummyRule"
|
|
2016
|
+
},
|
|
2017
|
+
"typescript/unified-signatures": {
|
|
2018
|
+
"$ref": "#/definitions/DummyRule"
|
|
2019
|
+
},
|
|
2020
|
+
"typescript/use-unknown-in-catch-callback-variable": {
|
|
2021
|
+
"$ref": "#/definitions/DummyRule"
|
|
2022
|
+
},
|
|
2023
|
+
"unicode-bom": {
|
|
2024
|
+
"$ref": "#/definitions/DummyRule"
|
|
2025
|
+
},
|
|
2026
|
+
"unicorn/catch-error-name": {
|
|
2027
|
+
"$ref": "#/definitions/DummyRule"
|
|
2028
|
+
},
|
|
2029
|
+
"unicorn/consistent-assert": {
|
|
2030
|
+
"$ref": "#/definitions/DummyRule"
|
|
2031
|
+
},
|
|
2032
|
+
"unicorn/consistent-date-clone": {
|
|
2033
|
+
"$ref": "#/definitions/DummyRule"
|
|
2034
|
+
},
|
|
2035
|
+
"unicorn/consistent-empty-array-spread": {
|
|
2036
|
+
"$ref": "#/definitions/DummyRule"
|
|
2037
|
+
},
|
|
2038
|
+
"unicorn/consistent-existence-index-check": {
|
|
2039
|
+
"$ref": "#/definitions/DummyRule"
|
|
2040
|
+
},
|
|
2041
|
+
"unicorn/consistent-function-scoping": {
|
|
2042
|
+
"$ref": "#/definitions/DummyRule"
|
|
2043
|
+
},
|
|
2044
|
+
"unicorn/consistent-template-literal-escape": {
|
|
2045
|
+
"$ref": "#/definitions/DummyRule"
|
|
2046
|
+
},
|
|
2047
|
+
"unicorn/custom-error-definition": {
|
|
2048
|
+
"$ref": "#/definitions/DummyRule"
|
|
2049
|
+
},
|
|
2050
|
+
"unicorn/empty-brace-spaces": {
|
|
2051
|
+
"$ref": "#/definitions/DummyRule"
|
|
2052
|
+
},
|
|
2053
|
+
"unicorn/error-message": {
|
|
2054
|
+
"$ref": "#/definitions/DummyRule"
|
|
2055
|
+
},
|
|
2056
|
+
"unicorn/escape-case": {
|
|
2057
|
+
"$ref": "#/definitions/DummyRule"
|
|
2058
|
+
},
|
|
2059
|
+
"unicorn/explicit-length-check": {
|
|
2060
|
+
"$ref": "#/definitions/DummyRule"
|
|
2061
|
+
},
|
|
2062
|
+
"unicorn/filename-case": {
|
|
2063
|
+
"$ref": "#/definitions/DummyRule"
|
|
2064
|
+
},
|
|
2065
|
+
"unicorn/new-for-builtins": {
|
|
2066
|
+
"$ref": "#/definitions/DummyRule"
|
|
2067
|
+
},
|
|
2068
|
+
"unicorn/no-abusive-eslint-disable": {
|
|
2069
|
+
"$ref": "#/definitions/DummyRule"
|
|
2070
|
+
},
|
|
2071
|
+
"unicorn/no-accessor-recursion": {
|
|
2072
|
+
"$ref": "#/definitions/DummyRule"
|
|
2073
|
+
},
|
|
2074
|
+
"unicorn/no-anonymous-default-export": {
|
|
2075
|
+
"$ref": "#/definitions/DummyRule"
|
|
2076
|
+
},
|
|
2077
|
+
"unicorn/no-array-callback-reference": {
|
|
2078
|
+
"$ref": "#/definitions/DummyRule"
|
|
2079
|
+
},
|
|
2080
|
+
"unicorn/no-array-for-each": {
|
|
2081
|
+
"$ref": "#/definitions/DummyRule"
|
|
2082
|
+
},
|
|
2083
|
+
"unicorn/no-array-method-this-argument": {
|
|
2084
|
+
"$ref": "#/definitions/DummyRule"
|
|
2085
|
+
},
|
|
2086
|
+
"unicorn/no-array-reduce": {
|
|
2087
|
+
"$ref": "#/definitions/DummyRule"
|
|
2088
|
+
},
|
|
2089
|
+
"unicorn/no-array-reverse": {
|
|
2090
|
+
"$ref": "#/definitions/DummyRule"
|
|
2091
|
+
},
|
|
2092
|
+
"unicorn/no-array-sort": {
|
|
2093
|
+
"$ref": "#/definitions/DummyRule"
|
|
2094
|
+
},
|
|
2095
|
+
"unicorn/no-await-expression-member": {
|
|
2096
|
+
"$ref": "#/definitions/DummyRule"
|
|
2097
|
+
},
|
|
2098
|
+
"unicorn/no-await-in-promise-methods": {
|
|
2099
|
+
"$ref": "#/definitions/DummyRule"
|
|
2100
|
+
},
|
|
2101
|
+
"unicorn/no-console-spaces": {
|
|
2102
|
+
"$ref": "#/definitions/DummyRule"
|
|
2103
|
+
},
|
|
2104
|
+
"unicorn/no-document-cookie": {
|
|
2105
|
+
"$ref": "#/definitions/DummyRule"
|
|
2106
|
+
},
|
|
2107
|
+
"unicorn/no-empty-file": {
|
|
2108
|
+
"$ref": "#/definitions/DummyRule"
|
|
2109
|
+
},
|
|
2110
|
+
"unicorn/no-hex-escape": {
|
|
2111
|
+
"$ref": "#/definitions/DummyRule"
|
|
2112
|
+
},
|
|
2113
|
+
"unicorn/no-immediate-mutation": {
|
|
2114
|
+
"$ref": "#/definitions/DummyRule"
|
|
2115
|
+
},
|
|
2116
|
+
"unicorn/no-instanceof-array": {
|
|
2117
|
+
"$ref": "#/definitions/DummyRule"
|
|
2118
|
+
},
|
|
2119
|
+
"unicorn/no-instanceof-builtins": {
|
|
2120
|
+
"$ref": "#/definitions/DummyRule"
|
|
2121
|
+
},
|
|
2122
|
+
"unicorn/no-invalid-fetch-options": {
|
|
2123
|
+
"$ref": "#/definitions/DummyRule"
|
|
2124
|
+
},
|
|
2125
|
+
"unicorn/no-invalid-remove-event-listener": {
|
|
2126
|
+
"$ref": "#/definitions/DummyRule"
|
|
2127
|
+
},
|
|
2128
|
+
"unicorn/no-length-as-slice-end": {
|
|
2129
|
+
"$ref": "#/definitions/DummyRule"
|
|
2130
|
+
},
|
|
2131
|
+
"unicorn/no-lonely-if": {
|
|
2132
|
+
"$ref": "#/definitions/DummyRule"
|
|
2133
|
+
},
|
|
2134
|
+
"unicorn/no-magic-array-flat-depth": {
|
|
2135
|
+
"$ref": "#/definitions/DummyRule"
|
|
2136
|
+
},
|
|
2137
|
+
"unicorn/no-negated-condition": {
|
|
2138
|
+
"$ref": "#/definitions/DummyRule"
|
|
2139
|
+
},
|
|
2140
|
+
"unicorn/no-negation-in-equality-check": {
|
|
2141
|
+
"$ref": "#/definitions/DummyRule"
|
|
2142
|
+
},
|
|
2143
|
+
"unicorn/no-nested-ternary": {
|
|
2144
|
+
"$ref": "#/definitions/DummyRule"
|
|
2145
|
+
},
|
|
2146
|
+
"unicorn/no-new-array": {
|
|
2147
|
+
"$ref": "#/definitions/DummyRule"
|
|
2148
|
+
},
|
|
2149
|
+
"unicorn/no-new-buffer": {
|
|
2150
|
+
"$ref": "#/definitions/DummyRule"
|
|
2151
|
+
},
|
|
2152
|
+
"unicorn/no-null": {
|
|
2153
|
+
"$ref": "#/definitions/DummyRule"
|
|
2154
|
+
},
|
|
2155
|
+
"unicorn/no-object-as-default-parameter": {
|
|
2156
|
+
"$ref": "#/definitions/DummyRule"
|
|
2157
|
+
},
|
|
2158
|
+
"unicorn/no-process-exit": {
|
|
2159
|
+
"$ref": "#/definitions/DummyRule"
|
|
2160
|
+
},
|
|
2161
|
+
"unicorn/no-single-promise-in-promise-methods": {
|
|
2162
|
+
"$ref": "#/definitions/DummyRule"
|
|
2163
|
+
},
|
|
2164
|
+
"unicorn/no-static-only-class": {
|
|
2165
|
+
"$ref": "#/definitions/DummyRule"
|
|
2166
|
+
},
|
|
2167
|
+
"unicorn/no-thenable": {
|
|
2168
|
+
"$ref": "#/definitions/DummyRule"
|
|
2169
|
+
},
|
|
2170
|
+
"unicorn/no-this-assignment": {
|
|
2171
|
+
"$ref": "#/definitions/DummyRule"
|
|
2172
|
+
},
|
|
2173
|
+
"unicorn/no-typeof-undefined": {
|
|
2174
|
+
"$ref": "#/definitions/DummyRule"
|
|
2175
|
+
},
|
|
2176
|
+
"unicorn/no-unnecessary-array-flat-depth": {
|
|
2177
|
+
"$ref": "#/definitions/DummyRule"
|
|
2178
|
+
},
|
|
2179
|
+
"unicorn/no-unnecessary-array-splice-count": {
|
|
2180
|
+
"$ref": "#/definitions/DummyRule"
|
|
2181
|
+
},
|
|
2182
|
+
"unicorn/no-unnecessary-await": {
|
|
2183
|
+
"$ref": "#/definitions/DummyRule"
|
|
2184
|
+
},
|
|
2185
|
+
"unicorn/no-unnecessary-slice-end": {
|
|
2186
|
+
"$ref": "#/definitions/DummyRule"
|
|
2187
|
+
},
|
|
2188
|
+
"unicorn/no-unreadable-array-destructuring": {
|
|
2189
|
+
"$ref": "#/definitions/DummyRule"
|
|
2190
|
+
},
|
|
2191
|
+
"unicorn/no-unreadable-iife": {
|
|
2192
|
+
"$ref": "#/definitions/DummyRule"
|
|
2193
|
+
},
|
|
2194
|
+
"unicorn/no-useless-collection-argument": {
|
|
2195
|
+
"$ref": "#/definitions/DummyRule"
|
|
2196
|
+
},
|
|
2197
|
+
"unicorn/no-useless-error-capture-stack-trace": {
|
|
2198
|
+
"$ref": "#/definitions/DummyRule"
|
|
2199
|
+
},
|
|
2200
|
+
"unicorn/no-useless-fallback-in-spread": {
|
|
2201
|
+
"$ref": "#/definitions/DummyRule"
|
|
2202
|
+
},
|
|
2203
|
+
"unicorn/no-useless-iterator-to-array": {
|
|
2204
|
+
"$ref": "#/definitions/DummyRule"
|
|
2205
|
+
},
|
|
2206
|
+
"unicorn/no-useless-length-check": {
|
|
2207
|
+
"$ref": "#/definitions/DummyRule"
|
|
2208
|
+
},
|
|
2209
|
+
"unicorn/no-useless-promise-resolve-reject": {
|
|
2210
|
+
"$ref": "#/definitions/DummyRule"
|
|
2211
|
+
},
|
|
2212
|
+
"unicorn/no-useless-spread": {
|
|
2213
|
+
"$ref": "#/definitions/DummyRule"
|
|
2214
|
+
},
|
|
2215
|
+
"unicorn/no-useless-switch-case": {
|
|
2216
|
+
"$ref": "#/definitions/DummyRule"
|
|
2217
|
+
},
|
|
2218
|
+
"unicorn/no-useless-undefined": {
|
|
2219
|
+
"$ref": "#/definitions/DummyRule"
|
|
2220
|
+
},
|
|
2221
|
+
"unicorn/no-zero-fractions": {
|
|
2222
|
+
"$ref": "#/definitions/DummyRule"
|
|
2223
|
+
},
|
|
2224
|
+
"unicorn/number-literal-case": {
|
|
2225
|
+
"$ref": "#/definitions/DummyRule"
|
|
2226
|
+
},
|
|
2227
|
+
"unicorn/numeric-separators-style": {
|
|
2228
|
+
"$ref": "#/definitions/DummyRule"
|
|
2229
|
+
},
|
|
2230
|
+
"unicorn/prefer-add-event-listener": {
|
|
2231
|
+
"$ref": "#/definitions/DummyRule"
|
|
2232
|
+
},
|
|
2233
|
+
"unicorn/prefer-array-find": {
|
|
2234
|
+
"$ref": "#/definitions/DummyRule"
|
|
2235
|
+
},
|
|
2236
|
+
"unicorn/prefer-array-flat": {
|
|
2237
|
+
"$ref": "#/definitions/DummyRule"
|
|
2238
|
+
},
|
|
2239
|
+
"unicorn/prefer-array-flat-map": {
|
|
2240
|
+
"$ref": "#/definitions/DummyRule"
|
|
2241
|
+
},
|
|
2242
|
+
"unicorn/prefer-array-index-of": {
|
|
2243
|
+
"$ref": "#/definitions/DummyRule"
|
|
2244
|
+
},
|
|
2245
|
+
"unicorn/prefer-array-some": {
|
|
2246
|
+
"$ref": "#/definitions/DummyRule"
|
|
2247
|
+
},
|
|
2248
|
+
"unicorn/prefer-at": {
|
|
2249
|
+
"$ref": "#/definitions/DummyRule"
|
|
2250
|
+
},
|
|
2251
|
+
"unicorn/prefer-bigint-literals": {
|
|
2252
|
+
"$ref": "#/definitions/DummyRule"
|
|
2253
|
+
},
|
|
2254
|
+
"unicorn/prefer-blob-reading-methods": {
|
|
2255
|
+
"$ref": "#/definitions/DummyRule"
|
|
2256
|
+
},
|
|
2257
|
+
"unicorn/prefer-class-fields": {
|
|
2258
|
+
"$ref": "#/definitions/DummyRule"
|
|
2259
|
+
},
|
|
2260
|
+
"unicorn/prefer-classlist-toggle": {
|
|
2261
|
+
"$ref": "#/definitions/DummyRule"
|
|
2262
|
+
},
|
|
2263
|
+
"unicorn/prefer-code-point": {
|
|
2264
|
+
"$ref": "#/definitions/DummyRule"
|
|
2265
|
+
},
|
|
2266
|
+
"unicorn/prefer-date-now": {
|
|
2267
|
+
"$ref": "#/definitions/DummyRule"
|
|
2268
|
+
},
|
|
2269
|
+
"unicorn/prefer-default-parameters": {
|
|
2270
|
+
"$ref": "#/definitions/DummyRule"
|
|
2271
|
+
},
|
|
2272
|
+
"unicorn/prefer-dom-node-append": {
|
|
2273
|
+
"$ref": "#/definitions/DummyRule"
|
|
2274
|
+
},
|
|
2275
|
+
"unicorn/prefer-dom-node-dataset": {
|
|
2276
|
+
"$ref": "#/definitions/DummyRule"
|
|
2277
|
+
},
|
|
2278
|
+
"unicorn/prefer-dom-node-remove": {
|
|
2279
|
+
"$ref": "#/definitions/DummyRule"
|
|
2280
|
+
},
|
|
2281
|
+
"unicorn/prefer-dom-node-text-content": {
|
|
2282
|
+
"$ref": "#/definitions/DummyRule"
|
|
2283
|
+
},
|
|
2284
|
+
"unicorn/prefer-event-target": {
|
|
2285
|
+
"$ref": "#/definitions/DummyRule"
|
|
2286
|
+
},
|
|
2287
|
+
"unicorn/prefer-global-this": {
|
|
2288
|
+
"$ref": "#/definitions/DummyRule"
|
|
2289
|
+
},
|
|
2290
|
+
"unicorn/prefer-import-meta-properties": {
|
|
2291
|
+
"$ref": "#/definitions/DummyRule"
|
|
2292
|
+
},
|
|
2293
|
+
"unicorn/prefer-includes": {
|
|
2294
|
+
"$ref": "#/definitions/DummyRule"
|
|
2295
|
+
},
|
|
2296
|
+
"unicorn/prefer-keyboard-event-key": {
|
|
2297
|
+
"$ref": "#/definitions/DummyRule"
|
|
2298
|
+
},
|
|
2299
|
+
"unicorn/prefer-logical-operator-over-ternary": {
|
|
2300
|
+
"$ref": "#/definitions/DummyRule"
|
|
2301
|
+
},
|
|
2302
|
+
"unicorn/prefer-math-min-max": {
|
|
2303
|
+
"$ref": "#/definitions/DummyRule"
|
|
2304
|
+
},
|
|
2305
|
+
"unicorn/prefer-math-trunc": {
|
|
2306
|
+
"$ref": "#/definitions/DummyRule"
|
|
2307
|
+
},
|
|
2308
|
+
"unicorn/prefer-modern-dom-apis": {
|
|
2309
|
+
"$ref": "#/definitions/DummyRule"
|
|
2310
|
+
},
|
|
2311
|
+
"unicorn/prefer-modern-math-apis": {
|
|
2312
|
+
"$ref": "#/definitions/DummyRule"
|
|
2313
|
+
},
|
|
2314
|
+
"unicorn/prefer-module": {
|
|
2315
|
+
"$ref": "#/definitions/DummyRule"
|
|
2316
|
+
},
|
|
2317
|
+
"unicorn/prefer-native-coercion-functions": {
|
|
2318
|
+
"$ref": "#/definitions/DummyRule"
|
|
2319
|
+
},
|
|
2320
|
+
"unicorn/prefer-negative-index": {
|
|
2321
|
+
"$ref": "#/definitions/DummyRule"
|
|
2322
|
+
},
|
|
2323
|
+
"unicorn/prefer-node-protocol": {
|
|
2324
|
+
"$ref": "#/definitions/DummyRule"
|
|
2325
|
+
},
|
|
2326
|
+
"unicorn/prefer-number-properties": {
|
|
2327
|
+
"$ref": "#/definitions/DummyRule"
|
|
2328
|
+
},
|
|
2329
|
+
"unicorn/prefer-object-from-entries": {
|
|
2330
|
+
"$ref": "#/definitions/DummyRule"
|
|
2331
|
+
},
|
|
2332
|
+
"unicorn/prefer-optional-catch-binding": {
|
|
2333
|
+
"$ref": "#/definitions/DummyRule"
|
|
2334
|
+
},
|
|
2335
|
+
"unicorn/prefer-prototype-methods": {
|
|
2336
|
+
"$ref": "#/definitions/DummyRule"
|
|
2337
|
+
},
|
|
2338
|
+
"unicorn/prefer-query-selector": {
|
|
2339
|
+
"$ref": "#/definitions/DummyRule"
|
|
2340
|
+
},
|
|
2341
|
+
"unicorn/prefer-reflect-apply": {
|
|
2342
|
+
"$ref": "#/definitions/DummyRule"
|
|
2343
|
+
},
|
|
2344
|
+
"unicorn/prefer-regexp-test": {
|
|
2345
|
+
"$ref": "#/definitions/DummyRule"
|
|
2346
|
+
},
|
|
2347
|
+
"unicorn/prefer-response-static-json": {
|
|
2348
|
+
"$ref": "#/definitions/DummyRule"
|
|
2349
|
+
},
|
|
2350
|
+
"unicorn/prefer-set-has": {
|
|
2351
|
+
"$ref": "#/definitions/DummyRule"
|
|
2352
|
+
},
|
|
2353
|
+
"unicorn/prefer-set-size": {
|
|
2354
|
+
"$ref": "#/definitions/DummyRule"
|
|
2355
|
+
},
|
|
2356
|
+
"unicorn/prefer-spread": {
|
|
2357
|
+
"$ref": "#/definitions/DummyRule"
|
|
2358
|
+
},
|
|
2359
|
+
"unicorn/prefer-string-raw": {
|
|
2360
|
+
"$ref": "#/definitions/DummyRule"
|
|
2361
|
+
},
|
|
2362
|
+
"unicorn/prefer-string-replace-all": {
|
|
2363
|
+
"$ref": "#/definitions/DummyRule"
|
|
2364
|
+
},
|
|
2365
|
+
"unicorn/prefer-string-slice": {
|
|
2366
|
+
"$ref": "#/definitions/DummyRule"
|
|
2367
|
+
},
|
|
2368
|
+
"unicorn/prefer-string-starts-ends-with": {
|
|
2369
|
+
"$ref": "#/definitions/DummyRule"
|
|
2370
|
+
},
|
|
2371
|
+
"unicorn/prefer-string-trim-start-end": {
|
|
2372
|
+
"$ref": "#/definitions/DummyRule"
|
|
2373
|
+
},
|
|
2374
|
+
"unicorn/prefer-structured-clone": {
|
|
2375
|
+
"$ref": "#/definitions/DummyRule"
|
|
2376
|
+
},
|
|
2377
|
+
"unicorn/prefer-ternary": {
|
|
2378
|
+
"$ref": "#/definitions/DummyRule"
|
|
2379
|
+
},
|
|
2380
|
+
"unicorn/prefer-top-level-await": {
|
|
2381
|
+
"$ref": "#/definitions/DummyRule"
|
|
2382
|
+
},
|
|
2383
|
+
"unicorn/prefer-type-error": {
|
|
2384
|
+
"$ref": "#/definitions/DummyRule"
|
|
2385
|
+
},
|
|
2386
|
+
"unicorn/relative-url-style": {
|
|
2387
|
+
"$ref": "#/definitions/DummyRule"
|
|
2388
|
+
},
|
|
2389
|
+
"unicorn/require-array-join-separator": {
|
|
2390
|
+
"$ref": "#/definitions/DummyRule"
|
|
2391
|
+
},
|
|
2392
|
+
"unicorn/require-module-attributes": {
|
|
2393
|
+
"$ref": "#/definitions/DummyRule"
|
|
2394
|
+
},
|
|
2395
|
+
"unicorn/require-module-specifiers": {
|
|
2396
|
+
"$ref": "#/definitions/DummyRule"
|
|
2397
|
+
},
|
|
2398
|
+
"unicorn/require-number-to-fixed-digits-argument": {
|
|
2399
|
+
"$ref": "#/definitions/DummyRule"
|
|
2400
|
+
},
|
|
2401
|
+
"unicorn/require-post-message-target-origin": {
|
|
2402
|
+
"$ref": "#/definitions/DummyRule"
|
|
2403
|
+
},
|
|
2404
|
+
"unicorn/switch-case-braces": {
|
|
2405
|
+
"$ref": "#/definitions/DummyRule"
|
|
2406
|
+
},
|
|
2407
|
+
"unicorn/switch-case-break-position": {
|
|
2408
|
+
"$ref": "#/definitions/DummyRule"
|
|
2409
|
+
},
|
|
2410
|
+
"unicorn/text-encoding-identifier-case": {
|
|
2411
|
+
"$ref": "#/definitions/DummyRule"
|
|
2412
|
+
},
|
|
2413
|
+
"unicorn/throw-new-error": {
|
|
2414
|
+
"$ref": "#/definitions/DummyRule"
|
|
2415
|
+
},
|
|
2416
|
+
"use-isnan": {
|
|
2417
|
+
"$ref": "#/definitions/DummyRule"
|
|
2418
|
+
},
|
|
2419
|
+
"valid-typeof": {
|
|
2420
|
+
"$ref": "#/definitions/DummyRule"
|
|
2421
|
+
},
|
|
2422
|
+
"vars-on-top": {
|
|
2423
|
+
"$ref": "#/definitions/DummyRule"
|
|
2424
|
+
},
|
|
2425
|
+
"vitest/consistent-each-for": {
|
|
2426
|
+
"$ref": "#/definitions/DummyRule"
|
|
2427
|
+
},
|
|
2428
|
+
"vitest/consistent-test-filename": {
|
|
2429
|
+
"$ref": "#/definitions/DummyRule"
|
|
2430
|
+
},
|
|
2431
|
+
"vitest/consistent-test-it": {
|
|
2432
|
+
"$ref": "#/definitions/DummyRule"
|
|
2433
|
+
},
|
|
2434
|
+
"vitest/consistent-vitest-vi": {
|
|
2435
|
+
"$ref": "#/definitions/DummyRule"
|
|
2436
|
+
},
|
|
2437
|
+
"vitest/expect-expect": {
|
|
2438
|
+
"$ref": "#/definitions/DummyRule"
|
|
2439
|
+
},
|
|
2440
|
+
"vitest/hoisted-apis-on-top": {
|
|
2441
|
+
"$ref": "#/definitions/DummyRule"
|
|
2442
|
+
},
|
|
2443
|
+
"vitest/max-expects": {
|
|
2444
|
+
"$ref": "#/definitions/DummyRule"
|
|
2445
|
+
},
|
|
2446
|
+
"vitest/max-nested-describe": {
|
|
2447
|
+
"$ref": "#/definitions/DummyRule"
|
|
2448
|
+
},
|
|
2449
|
+
"vitest/no-alias-methods": {
|
|
2450
|
+
"$ref": "#/definitions/DummyRule"
|
|
2451
|
+
},
|
|
2452
|
+
"vitest/no-commented-out-tests": {
|
|
2453
|
+
"$ref": "#/definitions/DummyRule"
|
|
2454
|
+
},
|
|
2455
|
+
"vitest/no-conditional-expect": {
|
|
2456
|
+
"$ref": "#/definitions/DummyRule"
|
|
2457
|
+
},
|
|
2458
|
+
"vitest/no-conditional-in-test": {
|
|
2459
|
+
"$ref": "#/definitions/DummyRule"
|
|
2460
|
+
},
|
|
2461
|
+
"vitest/no-conditional-tests": {
|
|
2462
|
+
"$ref": "#/definitions/DummyRule"
|
|
2463
|
+
},
|
|
2464
|
+
"vitest/no-disabled-tests": {
|
|
2465
|
+
"$ref": "#/definitions/DummyRule"
|
|
2466
|
+
},
|
|
2467
|
+
"vitest/no-duplicate-hooks": {
|
|
2468
|
+
"$ref": "#/definitions/DummyRule"
|
|
2469
|
+
},
|
|
2470
|
+
"vitest/no-focused-tests": {
|
|
2471
|
+
"$ref": "#/definitions/DummyRule"
|
|
2472
|
+
},
|
|
2473
|
+
"vitest/no-hooks": {
|
|
2474
|
+
"$ref": "#/definitions/DummyRule"
|
|
2475
|
+
},
|
|
2476
|
+
"vitest/no-identical-title": {
|
|
2477
|
+
"$ref": "#/definitions/DummyRule"
|
|
2478
|
+
},
|
|
2479
|
+
"vitest/no-import-node-test": {
|
|
2480
|
+
"$ref": "#/definitions/DummyRule"
|
|
2481
|
+
},
|
|
2482
|
+
"vitest/no-importing-vitest-globals": {
|
|
2483
|
+
"$ref": "#/definitions/DummyRule"
|
|
2484
|
+
},
|
|
2485
|
+
"vitest/no-interpolation-in-snapshots": {
|
|
2486
|
+
"$ref": "#/definitions/DummyRule"
|
|
2487
|
+
},
|
|
2488
|
+
"vitest/no-large-snapshots": {
|
|
2489
|
+
"$ref": "#/definitions/DummyRule"
|
|
2490
|
+
},
|
|
2491
|
+
"vitest/no-mocks-import": {
|
|
2492
|
+
"$ref": "#/definitions/DummyRule"
|
|
2493
|
+
},
|
|
2494
|
+
"vitest/no-restricted-matchers": {
|
|
2495
|
+
"$ref": "#/definitions/DummyRule"
|
|
2496
|
+
},
|
|
2497
|
+
"vitest/no-restricted-vi-methods": {
|
|
2498
|
+
"$ref": "#/definitions/DummyRule"
|
|
2499
|
+
},
|
|
2500
|
+
"vitest/no-standalone-expect": {
|
|
2501
|
+
"$ref": "#/definitions/DummyRule"
|
|
2502
|
+
},
|
|
2503
|
+
"vitest/no-test-prefixes": {
|
|
2504
|
+
"$ref": "#/definitions/DummyRule"
|
|
2505
|
+
},
|
|
2506
|
+
"vitest/no-test-return-statement": {
|
|
2507
|
+
"$ref": "#/definitions/DummyRule"
|
|
2508
|
+
},
|
|
2509
|
+
"vitest/no-unneeded-async-expect-function": {
|
|
2510
|
+
"$ref": "#/definitions/DummyRule"
|
|
2511
|
+
},
|
|
2512
|
+
"vitest/prefer-called-exactly-once-with": {
|
|
2513
|
+
"$ref": "#/definitions/DummyRule"
|
|
2514
|
+
},
|
|
2515
|
+
"vitest/prefer-called-once": {
|
|
2516
|
+
"$ref": "#/definitions/DummyRule"
|
|
2517
|
+
},
|
|
2518
|
+
"vitest/prefer-called-times": {
|
|
2519
|
+
"$ref": "#/definitions/DummyRule"
|
|
2520
|
+
},
|
|
2521
|
+
"vitest/prefer-called-with": {
|
|
2522
|
+
"$ref": "#/definitions/DummyRule"
|
|
2523
|
+
},
|
|
2524
|
+
"vitest/prefer-comparison-matcher": {
|
|
2525
|
+
"$ref": "#/definitions/DummyRule"
|
|
2526
|
+
},
|
|
2527
|
+
"vitest/prefer-describe-function-title": {
|
|
2528
|
+
"$ref": "#/definitions/DummyRule"
|
|
2529
|
+
},
|
|
2530
|
+
"vitest/prefer-each": {
|
|
2531
|
+
"$ref": "#/definitions/DummyRule"
|
|
2532
|
+
},
|
|
2533
|
+
"vitest/prefer-equality-matcher": {
|
|
2534
|
+
"$ref": "#/definitions/DummyRule"
|
|
2535
|
+
},
|
|
2536
|
+
"vitest/prefer-expect-assertions": {
|
|
2537
|
+
"$ref": "#/definitions/DummyRule"
|
|
2538
|
+
},
|
|
2539
|
+
"vitest/prefer-expect-resolves": {
|
|
2540
|
+
"$ref": "#/definitions/DummyRule"
|
|
2541
|
+
},
|
|
2542
|
+
"vitest/prefer-expect-type-of": {
|
|
2543
|
+
"$ref": "#/definitions/DummyRule"
|
|
2544
|
+
},
|
|
2545
|
+
"vitest/prefer-hooks-in-order": {
|
|
2546
|
+
"$ref": "#/definitions/DummyRule"
|
|
2547
|
+
},
|
|
2548
|
+
"vitest/prefer-hooks-on-top": {
|
|
2549
|
+
"$ref": "#/definitions/DummyRule"
|
|
2550
|
+
},
|
|
2551
|
+
"vitest/prefer-import-in-mock": {
|
|
2552
|
+
"$ref": "#/definitions/DummyRule"
|
|
2553
|
+
},
|
|
2554
|
+
"vitest/prefer-importing-vitest-globals": {
|
|
2555
|
+
"$ref": "#/definitions/DummyRule"
|
|
2556
|
+
},
|
|
2557
|
+
"vitest/prefer-lowercase-title": {
|
|
2558
|
+
"$ref": "#/definitions/DummyRule"
|
|
2559
|
+
},
|
|
2560
|
+
"vitest/prefer-mock-promise-shorthand": {
|
|
2561
|
+
"$ref": "#/definitions/DummyRule"
|
|
2562
|
+
},
|
|
2563
|
+
"vitest/prefer-mock-return-shorthand": {
|
|
2564
|
+
"$ref": "#/definitions/DummyRule"
|
|
2565
|
+
},
|
|
2566
|
+
"vitest/prefer-snapshot-hint": {
|
|
2567
|
+
"$ref": "#/definitions/DummyRule"
|
|
2568
|
+
},
|
|
2569
|
+
"vitest/prefer-spy-on": {
|
|
2570
|
+
"$ref": "#/definitions/DummyRule"
|
|
2571
|
+
},
|
|
2572
|
+
"vitest/prefer-strict-boolean-matchers": {
|
|
2573
|
+
"$ref": "#/definitions/DummyRule"
|
|
2574
|
+
},
|
|
2575
|
+
"vitest/prefer-strict-equal": {
|
|
2576
|
+
"$ref": "#/definitions/DummyRule"
|
|
2577
|
+
},
|
|
2578
|
+
"vitest/prefer-to-be": {
|
|
2579
|
+
"$ref": "#/definitions/DummyRule"
|
|
2580
|
+
},
|
|
2581
|
+
"vitest/prefer-to-be-falsy": {
|
|
2582
|
+
"$ref": "#/definitions/DummyRule"
|
|
102
2583
|
},
|
|
103
|
-
{
|
|
104
|
-
"
|
|
105
|
-
}
|
|
106
|
-
],
|
|
107
|
-
"markdownDescription": "Enabled built-in plugins for Oxlint.\nYou can view the list of available plugins on\n[the website](https://oxc.rs/docs/guide/usage/linter/plugins.html#supported-plugins).\n\nNOTE: Setting the `plugins` field will overwrite the base set of plugins.\nThe `plugins` array should reflect all of the plugins you want to use."
|
|
108
|
-
},
|
|
109
|
-
"rules": {
|
|
110
|
-
"description": "Example\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"prefer-const\": [\"error\", { \"ignoreReadBeforeAssign\": true }]\n}\n}\n```\n\nSee [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html) for the list of\nrules.",
|
|
111
|
-
"default": {},
|
|
112
|
-
"allOf": [
|
|
113
|
-
{
|
|
114
|
-
"$ref": "#/definitions/OxlintRules"
|
|
115
|
-
}
|
|
116
|
-
],
|
|
117
|
-
"markdownDescription": "Example\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"prefer-const\": [\"error\", { \"ignoreReadBeforeAssign\": true }]\n}\n}\n```\n\nSee [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html) for the list of\nrules."
|
|
118
|
-
},
|
|
119
|
-
"settings": {
|
|
120
|
-
"description": "Plugin-specific configuration for both built-in and custom plugins.\nThis includes settings for built-in plugins such as `react` and `jsdoc`\nas well as configuring settings for JS custom plugins loaded via `jsPlugins`.",
|
|
121
|
-
"default": {
|
|
122
|
-
"jsx-a11y": {
|
|
123
|
-
"polymorphicPropName": null,
|
|
124
|
-
"components": {},
|
|
125
|
-
"attributes": {}
|
|
2584
|
+
"vitest/prefer-to-be-object": {
|
|
2585
|
+
"$ref": "#/definitions/DummyRule"
|
|
126
2586
|
},
|
|
127
|
-
"
|
|
128
|
-
"
|
|
2587
|
+
"vitest/prefer-to-be-truthy": {
|
|
2588
|
+
"$ref": "#/definitions/DummyRule"
|
|
129
2589
|
},
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"linkComponents": [],
|
|
133
|
-
"version": null,
|
|
134
|
-
"componentWrapperFunctions": []
|
|
2590
|
+
"vitest/prefer-to-contain": {
|
|
2591
|
+
"$ref": "#/definitions/DummyRule"
|
|
135
2592
|
},
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"ignoreInternal": false,
|
|
139
|
-
"ignoreReplacesDocs": true,
|
|
140
|
-
"overrideReplacesDocs": true,
|
|
141
|
-
"augmentsExtendsReplacesDocs": false,
|
|
142
|
-
"implementsReplacesDocs": false,
|
|
143
|
-
"exemptDestructuredRootsFromChecks": false,
|
|
144
|
-
"tagNamePreference": {}
|
|
2593
|
+
"vitest/prefer-to-have-been-called-times": {
|
|
2594
|
+
"$ref": "#/definitions/DummyRule"
|
|
145
2595
|
},
|
|
146
|
-
"vitest": {
|
|
147
|
-
"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"allOf": [
|
|
151
|
-
{
|
|
152
|
-
"$ref": "#/definitions/OxlintSettings"
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"markdownDescription": "Plugin-specific configuration for both built-in and custom plugins.\nThis includes settings for built-in plugins such as `react` and `jsdoc`\nas well as configuring settings for JS custom plugins loaded via `jsPlugins`."
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"additionalProperties": false,
|
|
159
|
-
"allowComments": true,
|
|
160
|
-
"allowTrailingCommas": true,
|
|
161
|
-
"definitions": {
|
|
162
|
-
"AllowWarnDeny": {
|
|
163
|
-
"oneOf": [
|
|
164
|
-
{
|
|
165
|
-
"description": "Oxlint rule.\n- \"allow\" or \"off\": Turn off the rule.\n- \"warn\": Turn the rule on as a warning (doesn't affect exit code).\n- \"error\" or \"deny\": Turn the rule on as an error (will exit with a failure code).",
|
|
166
|
-
"type": "string",
|
|
167
|
-
"enum": [
|
|
168
|
-
"allow",
|
|
169
|
-
"off",
|
|
170
|
-
"warn",
|
|
171
|
-
"error",
|
|
172
|
-
"deny"
|
|
173
|
-
],
|
|
174
|
-
"markdownDescription": "Oxlint rule.\n- \"allow\" or \"off\": Turn off the rule.\n- \"warn\": Turn the rule on as a warning (doesn't affect exit code).\n- \"error\" or \"deny\": Turn the rule on as an error (will exit with a failure code)."
|
|
2596
|
+
"vitest/prefer-to-have-length": {
|
|
2597
|
+
"$ref": "#/definitions/DummyRule"
|
|
175
2598
|
},
|
|
176
|
-
{
|
|
177
|
-
"
|
|
178
|
-
"type": "integer",
|
|
179
|
-
"format": "uint32",
|
|
180
|
-
"maximum": 2.0,
|
|
181
|
-
"minimum": 0.0,
|
|
182
|
-
"markdownDescription": "Oxlint rule.\n \n- 0: Turn off the rule.\n- 1: Turn the rule on as a warning (doesn't affect exit code).\n- 2: Turn the rule on as an error (will exit with a failure code)."
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
"CustomComponent": {
|
|
187
|
-
"anyOf": [
|
|
188
|
-
{
|
|
189
|
-
"type": "string"
|
|
2599
|
+
"vitest/prefer-todo": {
|
|
2600
|
+
"$ref": "#/definitions/DummyRule"
|
|
190
2601
|
},
|
|
191
|
-
{
|
|
192
|
-
"
|
|
193
|
-
"required": [
|
|
194
|
-
"attribute",
|
|
195
|
-
"name"
|
|
196
|
-
],
|
|
197
|
-
"properties": {
|
|
198
|
-
"attribute": {
|
|
199
|
-
"type": "string"
|
|
200
|
-
},
|
|
201
|
-
"name": {
|
|
202
|
-
"type": "string"
|
|
203
|
-
}
|
|
204
|
-
}
|
|
2602
|
+
"vitest/require-awaited-expect-poll": {
|
|
2603
|
+
"$ref": "#/definitions/DummyRule"
|
|
205
2604
|
},
|
|
206
|
-
{
|
|
207
|
-
"
|
|
208
|
-
"required": [
|
|
209
|
-
"attributes",
|
|
210
|
-
"name"
|
|
211
|
-
],
|
|
212
|
-
"properties": {
|
|
213
|
-
"attributes": {
|
|
214
|
-
"type": "array",
|
|
215
|
-
"items": {
|
|
216
|
-
"type": "string"
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
"name": {
|
|
220
|
-
"type": "string"
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
]
|
|
225
|
-
},
|
|
226
|
-
"DummyRule": {
|
|
227
|
-
"anyOf": [
|
|
228
|
-
{
|
|
229
|
-
"$ref": "#/definitions/AllowWarnDeny"
|
|
2605
|
+
"vitest/require-hook": {
|
|
2606
|
+
"$ref": "#/definitions/DummyRule"
|
|
230
2607
|
},
|
|
231
|
-
{
|
|
232
|
-
"
|
|
233
|
-
|
|
2608
|
+
"vitest/require-local-test-context-for-concurrent-snapshots": {
|
|
2609
|
+
"$ref": "#/definitions/DummyRule"
|
|
2610
|
+
},
|
|
2611
|
+
"vitest/require-mock-type-parameters": {
|
|
2612
|
+
"$ref": "#/definitions/DummyRule"
|
|
2613
|
+
},
|
|
2614
|
+
"vitest/require-test-timeout": {
|
|
2615
|
+
"$ref": "#/definitions/DummyRule"
|
|
2616
|
+
},
|
|
2617
|
+
"vitest/require-to-throw-message": {
|
|
2618
|
+
"$ref": "#/definitions/DummyRule"
|
|
2619
|
+
},
|
|
2620
|
+
"vitest/require-top-level-describe": {
|
|
2621
|
+
"$ref": "#/definitions/DummyRule"
|
|
2622
|
+
},
|
|
2623
|
+
"vitest/valid-describe-callback": {
|
|
2624
|
+
"$ref": "#/definitions/DummyRule"
|
|
2625
|
+
},
|
|
2626
|
+
"vitest/valid-expect": {
|
|
2627
|
+
"$ref": "#/definitions/DummyRule"
|
|
2628
|
+
},
|
|
2629
|
+
"vitest/valid-expect-in-promise": {
|
|
2630
|
+
"$ref": "#/definitions/DummyRule"
|
|
2631
|
+
},
|
|
2632
|
+
"vitest/valid-title": {
|
|
2633
|
+
"$ref": "#/definitions/DummyRule"
|
|
2634
|
+
},
|
|
2635
|
+
"vitest/warn-todo": {
|
|
2636
|
+
"$ref": "#/definitions/DummyRule"
|
|
2637
|
+
},
|
|
2638
|
+
"vue/define-emits-declaration": {
|
|
2639
|
+
"$ref": "#/definitions/DummyRule"
|
|
2640
|
+
},
|
|
2641
|
+
"vue/define-props-declaration": {
|
|
2642
|
+
"$ref": "#/definitions/DummyRule"
|
|
2643
|
+
},
|
|
2644
|
+
"vue/define-props-destructuring": {
|
|
2645
|
+
"$ref": "#/definitions/DummyRule"
|
|
2646
|
+
},
|
|
2647
|
+
"vue/max-props": {
|
|
2648
|
+
"$ref": "#/definitions/DummyRule"
|
|
2649
|
+
},
|
|
2650
|
+
"vue/no-arrow-functions-in-watch": {
|
|
2651
|
+
"$ref": "#/definitions/DummyRule"
|
|
2652
|
+
},
|
|
2653
|
+
"vue/no-deprecated-data-object-declaration": {
|
|
2654
|
+
"$ref": "#/definitions/DummyRule"
|
|
2655
|
+
},
|
|
2656
|
+
"vue/no-deprecated-delete-set": {
|
|
2657
|
+
"$ref": "#/definitions/DummyRule"
|
|
2658
|
+
},
|
|
2659
|
+
"vue/no-deprecated-destroyed-lifecycle": {
|
|
2660
|
+
"$ref": "#/definitions/DummyRule"
|
|
2661
|
+
},
|
|
2662
|
+
"vue/no-deprecated-events-api": {
|
|
2663
|
+
"$ref": "#/definitions/DummyRule"
|
|
2664
|
+
},
|
|
2665
|
+
"vue/no-deprecated-model-definition": {
|
|
2666
|
+
"$ref": "#/definitions/DummyRule"
|
|
2667
|
+
},
|
|
2668
|
+
"vue/no-deprecated-vue-config-keycodes": {
|
|
2669
|
+
"$ref": "#/definitions/DummyRule"
|
|
2670
|
+
},
|
|
2671
|
+
"vue/no-export-in-script-setup": {
|
|
2672
|
+
"$ref": "#/definitions/DummyRule"
|
|
2673
|
+
},
|
|
2674
|
+
"vue/no-import-compiler-macros": {
|
|
2675
|
+
"$ref": "#/definitions/DummyRule"
|
|
2676
|
+
},
|
|
2677
|
+
"vue/no-lifecycle-after-await": {
|
|
2678
|
+
"$ref": "#/definitions/DummyRule"
|
|
2679
|
+
},
|
|
2680
|
+
"vue/no-multiple-slot-args": {
|
|
2681
|
+
"$ref": "#/definitions/DummyRule"
|
|
2682
|
+
},
|
|
2683
|
+
"vue/no-required-prop-with-default": {
|
|
2684
|
+
"$ref": "#/definitions/DummyRule"
|
|
2685
|
+
},
|
|
2686
|
+
"vue/no-this-in-before-route-enter": {
|
|
2687
|
+
"$ref": "#/definitions/DummyRule"
|
|
2688
|
+
},
|
|
2689
|
+
"vue/prefer-import-from-vue": {
|
|
2690
|
+
"$ref": "#/definitions/DummyRule"
|
|
2691
|
+
},
|
|
2692
|
+
"vue/require-default-export": {
|
|
2693
|
+
"$ref": "#/definitions/DummyRule"
|
|
2694
|
+
},
|
|
2695
|
+
"vue/require-typed-ref": {
|
|
2696
|
+
"$ref": "#/definitions/DummyRule"
|
|
2697
|
+
},
|
|
2698
|
+
"vue/return-in-computed-property": {
|
|
2699
|
+
"$ref": "#/definitions/DummyRule"
|
|
2700
|
+
},
|
|
2701
|
+
"vue/valid-define-emits": {
|
|
2702
|
+
"$ref": "#/definitions/DummyRule"
|
|
2703
|
+
},
|
|
2704
|
+
"vue/valid-define-props": {
|
|
2705
|
+
"$ref": "#/definitions/DummyRule"
|
|
2706
|
+
},
|
|
2707
|
+
"yoda": {
|
|
2708
|
+
"$ref": "#/definitions/DummyRule"
|
|
234
2709
|
}
|
|
235
|
-
|
|
236
|
-
},
|
|
237
|
-
"DummyRuleMap": {
|
|
238
|
-
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)",
|
|
239
|
-
"type": "object",
|
|
2710
|
+
},
|
|
240
2711
|
"additionalProperties": {
|
|
241
2712
|
"$ref": "#/definitions/DummyRule"
|
|
242
2713
|
},
|
|
@@ -258,9 +2729,9 @@
|
|
|
258
2729
|
],
|
|
259
2730
|
"properties": {
|
|
260
2731
|
"name": {
|
|
261
|
-
"description": "Custom name/alias for the plugin.\n\nNote: The following plugin names are reserved because they are implemented natively in Rust within oxlint and cannot be used for JS plugins:\n- react (includes react-hooks)\n- unicorn\n- typescript (includes @typescript-eslint)\n- oxc\n- import (includes import-x)\n- jsdoc\n- jest\n- vitest\n- jsx-a11y\n- nextjs\n- react-perf\n- promise\n- node\n- vue\n- eslint\n\nIf you need to use the JavaScript version of any of these plugins, provide a custom alias to avoid conflicts.",
|
|
2732
|
+
"description": "Custom name/alias for the plugin.\n\nNote: The following plugin names are reserved because they are implemented natively in Rust within oxlint and cannot be used for JS plugins:\n- react (includes react-hooks)\n- unicorn\n- typescript (includes @typescript-eslint)\n- oxc\n- import (includes import-x)\n- jsdoc\n- jest\n- vitest\n- jsx-a11y (includes jsx-a11y-x)\n- nextjs\n- react-perf\n- promise\n- node\n- vue\n- eslint\n\nIf you need to use the JavaScript version of any of these plugins, provide a custom alias to avoid conflicts.",
|
|
262
2733
|
"type": "string",
|
|
263
|
-
"markdownDescription": "Custom name/alias for the plugin.\n\nNote: The following plugin names are reserved because they are implemented natively in Rust within oxlint and cannot be used for JS plugins:\n- react (includes react-hooks)\n- unicorn\n- typescript (includes @typescript-eslint)\n- oxc\n- import (includes import-x)\n- jsdoc\n- jest\n- vitest\n- jsx-a11y\n- nextjs\n- react-perf\n- promise\n- node\n- vue\n- eslint\n\nIf you need to use the JavaScript version of any of these plugins, provide a custom alias to avoid conflicts."
|
|
2734
|
+
"markdownDescription": "Custom name/alias for the plugin.\n\nNote: The following plugin names are reserved because they are implemented natively in Rust within oxlint and cannot be used for JS plugins:\n- react (includes react-hooks)\n- unicorn\n- typescript (includes @typescript-eslint)\n- oxc\n- import (includes import-x)\n- jsdoc\n- jest\n- vitest\n- jsx-a11y (includes jsx-a11y-x)\n- nextjs\n- react-perf\n- promise\n- node\n- vue\n- eslint\n\nIf you need to use the JavaScript version of any of these plugins, provide a custom alias to avoid conflicts."
|
|
264
2735
|
},
|
|
265
2736
|
"specifier": {
|
|
266
2737
|
"description": "Path or package name of the plugin",
|
|
@@ -274,12 +2745,12 @@
|
|
|
274
2745
|
]
|
|
275
2746
|
},
|
|
276
2747
|
"GlobSet": {
|
|
277
|
-
"description": "A set of glob patterns.",
|
|
2748
|
+
"description": "A set of glob patterns.\nPatterns are matched against paths relative to the configuration file's directory.",
|
|
278
2749
|
"type": "array",
|
|
279
2750
|
"items": {
|
|
280
2751
|
"type": "string"
|
|
281
2752
|
},
|
|
282
|
-
"markdownDescription": "A set of glob patterns."
|
|
2753
|
+
"markdownDescription": "A set of glob patterns.\nPatterns are matched against paths relative to the configuration file's directory."
|
|
283
2754
|
},
|
|
284
2755
|
"GlobalValue": {
|
|
285
2756
|
"type": "string",
|
|
@@ -370,15 +2841,41 @@
|
|
|
370
2841
|
},
|
|
371
2842
|
"polymorphicPropName": {
|
|
372
2843
|
"description": "An optional setting that define the prop your code uses to create polymorphic components.\nThis setting will be used to determine the element type in rules that\nrequire semantic context.\n\nFor example, if you set the `polymorphicPropName` to `as`, then this element:\n\n```jsx\n<Box as=\"h3\">Hello</Box>\n```\n\nWill be treated as an `h3`. If not set, this component will be treated\nas a `Box`.",
|
|
373
|
-
"type":
|
|
374
|
-
"string",
|
|
375
|
-
"null"
|
|
376
|
-
],
|
|
2844
|
+
"type": "string",
|
|
377
2845
|
"markdownDescription": "An optional setting that define the prop your code uses to create polymorphic components.\nThis setting will be used to determine the element type in rules that\nrequire semantic context.\n\nFor example, if you set the `polymorphicPropName` to `as`, then this element:\n\n```jsx\n<Box as=\"h3\">Hello</Box>\n```\n\nWill be treated as an `h3`. If not set, this component will be treated\nas a `Box`."
|
|
378
2846
|
}
|
|
379
2847
|
},
|
|
380
2848
|
"markdownDescription": "Configure JSX A11y plugin rules.\n\nSee\n[eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#configurations)'s\nconfiguration for a full reference."
|
|
381
2849
|
},
|
|
2850
|
+
"JestPluginSettings": {
|
|
2851
|
+
"description": "Configure Jest plugin rules.\n\nSee [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)'s\nconfiguration for a full reference.",
|
|
2852
|
+
"type": "object",
|
|
2853
|
+
"properties": {
|
|
2854
|
+
"version": {
|
|
2855
|
+
"description": "Jest version — accepts a number (`29`) or a semver string (`\"29.1.0\"` or `\"v29.1.0\"`),\nstoring only the major version.\n::: warning\nUsing this config will override the `no-deprecated-functions` config set.\n:::",
|
|
2856
|
+
"default": null,
|
|
2857
|
+
"allOf": [
|
|
2858
|
+
{
|
|
2859
|
+
"$ref": "#/definitions/JestVersionSchema"
|
|
2860
|
+
}
|
|
2861
|
+
],
|
|
2862
|
+
"markdownDescription": "Jest version — accepts a number (`29`) or a semver string (`\"29.1.0\"` or `\"v29.1.0\"`),\nstoring only the major version.\n::: warning\nUsing this config will override the `no-deprecated-functions` config set.\n:::"
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
"markdownDescription": "Configure Jest plugin rules.\n\nSee [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest)'s\nconfiguration for a full reference."
|
|
2866
|
+
},
|
|
2867
|
+
"JestVersionSchema": {
|
|
2868
|
+
"anyOf": [
|
|
2869
|
+
{
|
|
2870
|
+
"type": "integer",
|
|
2871
|
+
"format": "uint",
|
|
2872
|
+
"minimum": 0.0
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
"type": "string"
|
|
2876
|
+
}
|
|
2877
|
+
]
|
|
2878
|
+
},
|
|
382
2879
|
"LintPluginOptionsSchema": {
|
|
383
2880
|
"type": "string",
|
|
384
2881
|
"enum": [
|
|
@@ -476,12 +2973,12 @@
|
|
|
476
2973
|
"markdownDescription": "Configure an entire category of rules all at once.\n\nRules enabled or disabled this way will be overwritten by individual rules in the `rules` field.\n\nExample\n```json\n{\n \"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n \"categories\": {\n \"correctness\": \"warn\"\n },\n \"rules\": {\n \"eslint/no-unused-vars\": \"error\"\n }\n}\n```"
|
|
477
2974
|
},
|
|
478
2975
|
"OxlintEnv": {
|
|
479
|
-
"description": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\
|
|
2976
|
+
"description": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\nAvailable environments:\n- amd - require() and define() globals.\n- applescript - AppleScript globals.\n- astro - Astro globals.\n- atomtest - Atom test globals.\n- audioworklet - AudioWorklet globals.\n- browser - browser globals.\n- builtin - Latest ECMAScript globals, equivalent to es2026.\n- commonjs - CommonJS globals and scoping.\n- embertest - Ember test globals.\n- es2015 - ECMAScript 2015 globals.\n- es2016 - ECMAScript 2016 globals.\n- es2017 - ECMAScript 2017 globals.\n- es2018 - ECMAScript 2018 globals.\n- es2019 - ECMAScript 2019 globals.\n- es2020 - ECMAScript 2020 globals.\n- es2021 - ECMAScript 2021 globals.\n- es2022 - ECMAScript 2022 globals.\n- es2023 - ECMAScript 2023 globals.\n- es2024 - ECMAScript 2024 globals.\n- es2025 - ECMAScript 2025 globals.\n- es2026 - ECMAScript 2026 globals.\n- es6 - ECMAScript 6 globals except modules.\n- greasemonkey - GreaseMonkey globals.\n- jasmine - Jasmine globals.\n- jest - Jest globals.\n- jquery - jQuery globals.\n- meteor - Meteor globals.\n- mocha - Mocha globals.\n- mongo - MongoDB globals.\n- nashorn - Java 8 Nashorn globals.\n- node - Node.js globals and scoping.\n- phantomjs - PhantomJS globals.\n- prototypejs - Prototype.js globals.\n- protractor - Protractor globals.\n- qunit - QUnit globals.\n- serviceworker - Service Worker globals.\n- shared-node-browser - Node.js and Browser common globals.\n- shelljs - ShellJS globals.\n- svelte - Svelte globals.\n- vitest - Vitest globals.\n- vue - Vue globals.\n- webextensions - WebExtensions globals.\n- worker - Web Workers globals.",
|
|
480
2977
|
"type": "object",
|
|
481
2978
|
"additionalProperties": {
|
|
482
2979
|
"type": "boolean"
|
|
483
2980
|
},
|
|
484
|
-
"markdownDescription": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\
|
|
2981
|
+
"markdownDescription": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\nAvailable environments:\n- amd - require() and define() globals.\n- applescript - AppleScript globals.\n- astro - Astro globals.\n- atomtest - Atom test globals.\n- audioworklet - AudioWorklet globals.\n- browser - browser globals.\n- builtin - Latest ECMAScript globals, equivalent to es2026.\n- commonjs - CommonJS globals and scoping.\n- embertest - Ember test globals.\n- es2015 - ECMAScript 2015 globals.\n- es2016 - ECMAScript 2016 globals.\n- es2017 - ECMAScript 2017 globals.\n- es2018 - ECMAScript 2018 globals.\n- es2019 - ECMAScript 2019 globals.\n- es2020 - ECMAScript 2020 globals.\n- es2021 - ECMAScript 2021 globals.\n- es2022 - ECMAScript 2022 globals.\n- es2023 - ECMAScript 2023 globals.\n- es2024 - ECMAScript 2024 globals.\n- es2025 - ECMAScript 2025 globals.\n- es2026 - ECMAScript 2026 globals.\n- es6 - ECMAScript 6 globals except modules.\n- greasemonkey - GreaseMonkey globals.\n- jasmine - Jasmine globals.\n- jest - Jest globals.\n- jquery - jQuery globals.\n- meteor - Meteor globals.\n- mocha - Mocha globals.\n- mongo - MongoDB globals.\n- nashorn - Java 8 Nashorn globals.\n- node - Node.js globals and scoping.\n- phantomjs - PhantomJS globals.\n- prototypejs - Prototype.js globals.\n- protractor - Protractor globals.\n- qunit - QUnit globals.\n- serviceworker - Service Worker globals.\n- shared-node-browser - Node.js and Browser common globals.\n- shelljs - ShellJS globals.\n- svelte - Svelte globals.\n- vitest - Vitest globals.\n- vue - Vue globals.\n- webextensions - WebExtensions globals.\n- worker - Web Workers globals."
|
|
485
2982
|
},
|
|
486
2983
|
"OxlintGlobals": {
|
|
487
2984
|
"description": "Add or remove global variables.\n\nFor each global variable, set the corresponding value equal to `\"writable\"`\nto allow the variable to be overwritten or `\"readonly\"` to disallow overwriting.\n\nGlobals can be disabled by setting their value to `\"off\"`. For example, in\nan environment where most Es2015 globals are available but `Promise` is unavailable,\nyou might use this config:\n\n```json\n\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"env\": {\n\"es6\": true\n},\n\"globals\": {\n\"Promise\": \"off\"\n}\n}\n\n```\n\nYou may also use `\"readable\"` or `false` to represent `\"readonly\"`, and\n`\"writeable\"` or `true` to represent `\"writable\"`.",
|
|
@@ -497,48 +2994,38 @@
|
|
|
497
2994
|
"properties": {
|
|
498
2995
|
"denyWarnings": {
|
|
499
2996
|
"description": "Ensure warnings produce a non-zero exit code.\n\nEquivalent to passing `--deny-warnings` on the CLI.",
|
|
500
|
-
"type":
|
|
501
|
-
"boolean",
|
|
502
|
-
"null"
|
|
503
|
-
],
|
|
2997
|
+
"type": "boolean",
|
|
504
2998
|
"markdownDescription": "Ensure warnings produce a non-zero exit code.\n\nEquivalent to passing `--deny-warnings` on the CLI."
|
|
505
2999
|
},
|
|
506
3000
|
"maxWarnings": {
|
|
507
3001
|
"description": "Specify a warning threshold. Exits with an error status if warnings exceed this value.\n\nEquivalent to passing `--max-warnings` on the CLI.",
|
|
508
|
-
"type":
|
|
509
|
-
"integer",
|
|
510
|
-
"null"
|
|
511
|
-
],
|
|
3002
|
+
"type": "integer",
|
|
512
3003
|
"format": "uint",
|
|
513
3004
|
"minimum": 0.0,
|
|
514
3005
|
"markdownDescription": "Specify a warning threshold. Exits with an error status if warnings exceed this value.\n\nEquivalent to passing `--max-warnings` on the CLI."
|
|
515
3006
|
},
|
|
516
3007
|
"reportUnusedDisableDirectives": {
|
|
517
3008
|
"description": "Report unused disable directives (e.g. `// oxlint-disable-line` or `// eslint-disable-line`).\n\nEquivalent to passing `--report-unused-disable-directives-severity` on the CLI.\nCLI flags take precedence over this value when both are set.\nOnly supported in the root configuration file.",
|
|
518
|
-
"
|
|
3009
|
+
"allOf": [
|
|
519
3010
|
{
|
|
520
3011
|
"$ref": "#/definitions/AllowWarnDeny"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"type": "null"
|
|
524
3012
|
}
|
|
525
3013
|
],
|
|
526
3014
|
"markdownDescription": "Report unused disable directives (e.g. `// oxlint-disable-line` or `// eslint-disable-line`).\n\nEquivalent to passing `--report-unused-disable-directives-severity` on the CLI.\nCLI flags take precedence over this value when both are set.\nOnly supported in the root configuration file."
|
|
527
3015
|
},
|
|
3016
|
+
"respectEslintDisableDirectives": {
|
|
3017
|
+
"description": "Whether oxlint should respect `eslint-disable*` and `eslint-enable*`\ndirectives in addition to its native `oxlint-*` directives.\n\nDefaults to `true`.\nOnly supported in the root configuration file.",
|
|
3018
|
+
"type": "boolean",
|
|
3019
|
+
"markdownDescription": "Whether oxlint should respect `eslint-disable*` and `eslint-enable*`\ndirectives in addition to its native `oxlint-*` directives.\n\nDefaults to `true`.\nOnly supported in the root configuration file."
|
|
3020
|
+
},
|
|
528
3021
|
"typeAware": {
|
|
529
3022
|
"description": "Enable rules that require type information.\n\nEquivalent to passing `--type-aware` on the CLI.\n\nNote that this requires the `oxlint-tsgolint` package to be installed.",
|
|
530
|
-
"type":
|
|
531
|
-
"boolean",
|
|
532
|
-
"null"
|
|
533
|
-
],
|
|
3023
|
+
"type": "boolean",
|
|
534
3024
|
"markdownDescription": "Enable rules that require type information.\n\nEquivalent to passing `--type-aware` on the CLI.\n\nNote that this requires the `oxlint-tsgolint` package to be installed."
|
|
535
3025
|
},
|
|
536
3026
|
"typeCheck": {
|
|
537
3027
|
"description": "Enable experimental type checking (includes TypeScript compiler diagnostics).\n\nEquivalent to passing `--type-check` on the CLI.\n\nNote that this requires the `oxlint-tsgolint` package to be installed.",
|
|
538
|
-
"type":
|
|
539
|
-
"boolean",
|
|
540
|
-
"null"
|
|
541
|
-
],
|
|
3028
|
+
"type": "boolean",
|
|
542
3029
|
"markdownDescription": "Enable experimental type checking (includes TypeScript compiler diagnostics).\n\nEquivalent to passing `--type-check` on the CLI.\n\nNote that this requires the `oxlint-tsgolint` package to be installed."
|
|
543
3030
|
}
|
|
544
3031
|
},
|
|
@@ -553,12 +3040,9 @@
|
|
|
553
3040
|
"properties": {
|
|
554
3041
|
"env": {
|
|
555
3042
|
"description": "Environments enable and disable collections of global variables.",
|
|
556
|
-
"
|
|
3043
|
+
"allOf": [
|
|
557
3044
|
{
|
|
558
3045
|
"$ref": "#/definitions/OxlintEnv"
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"type": "null"
|
|
562
3046
|
}
|
|
563
3047
|
],
|
|
564
3048
|
"markdownDescription": "Environments enable and disable collections of global variables."
|
|
@@ -574,18 +3058,15 @@
|
|
|
574
3058
|
},
|
|
575
3059
|
"globals": {
|
|
576
3060
|
"description": "Enabled or disabled specific global variables.",
|
|
577
|
-
"
|
|
3061
|
+
"allOf": [
|
|
578
3062
|
{
|
|
579
3063
|
"$ref": "#/definitions/OxlintGlobals"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"type": "null"
|
|
583
3064
|
}
|
|
584
3065
|
],
|
|
585
3066
|
"markdownDescription": "Enabled or disabled specific global variables."
|
|
586
3067
|
},
|
|
587
3068
|
"jsPlugins": {
|
|
588
|
-
"description": "JS plugins for this override, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are
|
|
3069
|
+
"description": "JS plugins for this override, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are in alpha and not subject to semver.",
|
|
589
3070
|
"anyOf": [
|
|
590
3071
|
{
|
|
591
3072
|
"type": "null"
|
|
@@ -598,17 +3079,14 @@
|
|
|
598
3079
|
"uniqueItems": true
|
|
599
3080
|
}
|
|
600
3081
|
],
|
|
601
|
-
"markdownDescription": "JS plugins for this override, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are
|
|
3082
|
+
"markdownDescription": "JS plugins for this override, allows usage of ESLint plugins with Oxlint.\n\nRead more about JS plugins in\n[the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).\n\nNote: JS plugins are in alpha and not subject to semver."
|
|
602
3083
|
},
|
|
603
3084
|
"plugins": {
|
|
604
3085
|
"description": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used.",
|
|
605
3086
|
"default": null,
|
|
606
|
-
"
|
|
3087
|
+
"allOf": [
|
|
607
3088
|
{
|
|
608
3089
|
"$ref": "#/definitions/LintPlugins"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"type": "null"
|
|
612
3090
|
}
|
|
613
3091
|
],
|
|
614
3092
|
"markdownDescription": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used."
|
|
@@ -638,6 +3116,16 @@
|
|
|
638
3116
|
"description": "Configure the behavior of linter plugins.\n\nHere's an example if you're using Next.js in a monorepo:\n\n```json\n{\n\"settings\": {\n\"next\": {\n\"rootDir\": \"apps/dashboard/\"\n},\n\"react\": {\n\"linkComponents\": [\n{ \"name\": \"Link\", \"linkAttribute\": \"to\" }\n]\n},\n\"jsx-a11y\": {\n\"components\": {\n\"Link\": \"a\",\n\"Button\": \"button\"\n}\n}\n}\n}\n```",
|
|
639
3117
|
"type": "object",
|
|
640
3118
|
"properties": {
|
|
3119
|
+
"jest": {
|
|
3120
|
+
"default": {
|
|
3121
|
+
"version": null
|
|
3122
|
+
},
|
|
3123
|
+
"allOf": [
|
|
3124
|
+
{
|
|
3125
|
+
"$ref": "#/definitions/JestPluginSettings"
|
|
3126
|
+
}
|
|
3127
|
+
]
|
|
3128
|
+
},
|
|
641
3129
|
"jsdoc": {
|
|
642
3130
|
"default": {
|
|
643
3131
|
"ignorePrivate": false,
|
|
@@ -737,10 +3225,7 @@
|
|
|
737
3225
|
"version": {
|
|
738
3226
|
"description": "React version to use for version-specific rules.\n\nAccepts semver versions (e.g., \"18.2.0\", \"17.0\").\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n}\n}\n}\n```",
|
|
739
3227
|
"default": null,
|
|
740
|
-
"type":
|
|
741
|
-
"string",
|
|
742
|
-
"null"
|
|
743
|
-
],
|
|
3228
|
+
"type": "string",
|
|
744
3229
|
"pattern": "^[1-9]\\d*(\\.(0|[1-9]\\d*))?(\\.(0|[1-9]\\d*))?$",
|
|
745
3230
|
"markdownDescription": "React version to use for version-specific rules.\n\nAccepts semver versions (e.g., \"18.2.0\", \"17.0\").\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n}\n}\n}\n```"
|
|
746
3231
|
}
|
|
@@ -797,5 +3282,5 @@
|
|
|
797
3282
|
"markdownDescription": "Configure Vitest plugin rules.\n\nSee [eslint-plugin-vitest](https://github.com/vitest-dev/eslint-plugin-vitest)'s\nconfiguration for a full reference."
|
|
798
3283
|
}
|
|
799
3284
|
},
|
|
800
|
-
"markdownDescription": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json`\n\nExample\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"plugins\": [\"import\", \"typescript\", \"unicorn\"],\n\"env\": {\n\"browser\": true\n},\n\"globals\": {\n\"foo\": \"readonly\"\n},\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n},\n\"custom\": { \"option\": true }\n},\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\n\"overrides\": [\n{\n\"files\": [\"*.test.ts\", \"*.spec.ts\"],\n\"rules\": {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}\n```\n\n`oxlint.config.ts`\n\n```ts\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\nplugins: [\"import\", \"typescript\", \"unicorn\"],\nenv: {\n\"browser\": true\n},\nglobals: {\n\"foo\": \"readonly\"\n},\nsettings: {\nreact: {\nversion: \"18.2.0\"\n},\ncustom: { option: true }\n},\nrules: {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\noverrides: [\n{\nfiles: [\"*.test.ts\", \"*.spec.ts\"],\nrules: {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}
|
|
3285
|
+
"markdownDescription": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json`\n\nExample\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"plugins\": [\"import\", \"typescript\", \"unicorn\"],\n\"env\": {\n\"browser\": true\n},\n\"globals\": {\n\"foo\": \"readonly\"\n},\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n},\n\"custom\": { \"option\": true }\n},\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\n\"overrides\": [\n{\n\"files\": [\"*.test.ts\", \"*.spec.ts\"],\n\"rules\": {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}\n```\n\n`oxlint.config.ts`\n\n```ts\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\nplugins: [\"import\", \"typescript\", \"unicorn\"],\nenv: {\n\"browser\": true\n},\nglobals: {\n\"foo\": \"readonly\"\n},\nsettings: {\nreact: {\nversion: \"18.2.0\"\n},\ncustom: { option: true }\n},\nrules: {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\noverrides: [\n{\nfiles: [\"*.test.ts\", \"*.spec.ts\"],\nrules: {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n});\n```"
|
|
801
3286
|
}
|