@shibanet0/datamitsu-config 0.0.1-alpha-10 → 0.0.1-alpha-11
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/bin/datamitsu.mjs +1 -0
- package/datamitsu.js +247 -40
- package/dist/chunk-7PGRJISO.js +24 -0
- package/dist/dist-SV6KNVWH.js +145 -0
- package/dist/eslint/globs.d.ts +16 -0
- package/dist/eslint/index.js +869 -261
- package/dist/eslint/plugins/arrayFunc.d.ts +2 -0
- package/dist/eslint/plugins/deMorgan.d.ts +2 -0
- package/dist/eslint/plugins/import.d.ts +2 -2
- package/dist/eslint/plugins/javascript.d.ts +2 -0
- package/dist/eslint/plugins/jsx-a11y.d.ts +2 -2
- package/dist/eslint/plugins/n.d.ts +2 -0
- package/dist/eslint/plugins/no-use-extend-native.d.ts +2 -2
- package/dist/eslint/plugins/perfectionist.d.ts +2 -2
- package/dist/eslint/plugins/promise.d.ts +2 -2
- package/dist/eslint/plugins/react-hooks.d.ts +2 -2
- package/dist/eslint/plugins/react-perf.d.ts +2 -2
- package/dist/eslint/plugins/react-prefer-function-component.d.ts +2 -2
- package/dist/eslint/plugins/react-refresh.d.ts +2 -2
- package/dist/eslint/plugins/react.d.ts +2 -2
- package/dist/eslint/plugins/security.d.ts +2 -2
- package/dist/eslint/plugins/sonarjs.d.ts +2 -2
- package/dist/eslint/plugins/storybook.d.ts +2 -2
- package/dist/eslint/plugins/turbo.d.ts +2 -2
- package/dist/eslint/plugins/typescript.d.ts +2 -0
- package/dist/eslint/plugins/unicorn.d.ts +2 -2
- package/dist/eslint/plugins/unused-imports.d.ts +2 -2
- package/dist/eslint/types.d.ts +34 -0
- package/dist/globs/globs.d.ts +1 -0
- package/dist/oxlint/index.d.ts +2 -0
- package/dist/react-QIEZHZI3.js +61 -0
- package/dist/storybook-IETULN4Z.js +8 -0
- package/dist/turbo-ZBSVFMOO.js +23 -0
- package/dist/unused-imports-GCXR6T7K.js +31 -0
- package/oxlint_configuration_schema.json +712 -0
- package/package.json +11 -3
|
@@ -0,0 +1,712 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
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 --import-plugin`\n\n::: danger NOTE\n\nOnly the `.json` format is supported. You can use comments in configuration files.\n\n:::\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},\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```",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"$schema": {
|
|
8
|
+
"description": "Schema URI for editor tooling.",
|
|
9
|
+
"type": [
|
|
10
|
+
"string",
|
|
11
|
+
"null"
|
|
12
|
+
],
|
|
13
|
+
"markdownDescription": "Schema URI for editor tooling."
|
|
14
|
+
},
|
|
15
|
+
"categories": {
|
|
16
|
+
"default": {},
|
|
17
|
+
"allOf": [
|
|
18
|
+
{
|
|
19
|
+
"$ref": "#/definitions/OxlintCategories"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"env": {
|
|
24
|
+
"description": "Environments enable and disable collections of global variables.",
|
|
25
|
+
"default": {
|
|
26
|
+
"builtin": true
|
|
27
|
+
},
|
|
28
|
+
"allOf": [
|
|
29
|
+
{
|
|
30
|
+
"$ref": "#/definitions/OxlintEnv"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"markdownDescription": "Environments enable and disable collections of global variables."
|
|
34
|
+
},
|
|
35
|
+
"extends": {
|
|
36
|
+
"description": "Paths of configuration files that this configuration file extends (inherits from). The files\nare resolved relative to the location of the configuration file that contains the `extends`\nproperty. The configuration files are merged from the first to the last, with the last file\noverriding the previous ones.",
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
"markdownDescription": "Paths of configuration files that this configuration file extends (inherits from). The files\nare resolved relative to the location of the configuration file that contains the `extends`\nproperty. The configuration files are merged from the first to the last, with the last file\noverriding the previous ones."
|
|
42
|
+
},
|
|
43
|
+
"globals": {
|
|
44
|
+
"description": "Enabled or disabled specific global variables.",
|
|
45
|
+
"default": {},
|
|
46
|
+
"allOf": [
|
|
47
|
+
{
|
|
48
|
+
"$ref": "#/definitions/OxlintGlobals"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"markdownDescription": "Enabled or disabled specific global variables."
|
|
52
|
+
},
|
|
53
|
+
"ignorePatterns": {
|
|
54
|
+
"description": "Globs to ignore during linting. These are resolved from the configuration file path.",
|
|
55
|
+
"default": [],
|
|
56
|
+
"type": "array",
|
|
57
|
+
"items": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"markdownDescription": "Globs to ignore during linting. These are resolved from the configuration file path."
|
|
61
|
+
},
|
|
62
|
+
"jsPlugins": {
|
|
63
|
+
"description": "JS plugins.\n\nNote: JS plugins are experimental and not subject to semver.\nThey are not supported in language server at present.",
|
|
64
|
+
"anyOf": [
|
|
65
|
+
{
|
|
66
|
+
"type": "null"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"type": "array",
|
|
70
|
+
"items": {
|
|
71
|
+
"$ref": "#/definitions/ExternalPluginEntry"
|
|
72
|
+
},
|
|
73
|
+
"uniqueItems": true
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"markdownDescription": "JS plugins.\n\nNote: JS plugins are experimental and not subject to semver.\nThey are not supported in language server at present."
|
|
77
|
+
},
|
|
78
|
+
"overrides": {
|
|
79
|
+
"description": "Add, remove, or otherwise reconfigure rules for specific files or groups of files.",
|
|
80
|
+
"allOf": [
|
|
81
|
+
{
|
|
82
|
+
"$ref": "#/definitions/OxlintOverrides"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"markdownDescription": "Add, remove, or otherwise reconfigure rules for specific files or groups of files."
|
|
86
|
+
},
|
|
87
|
+
"plugins": {
|
|
88
|
+
"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.",
|
|
89
|
+
"default": null,
|
|
90
|
+
"anyOf": [
|
|
91
|
+
{
|
|
92
|
+
"$ref": "#/definitions/LintPlugins"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "null"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"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."
|
|
99
|
+
},
|
|
100
|
+
"rules": {
|
|
101
|
+
"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.",
|
|
102
|
+
"default": {},
|
|
103
|
+
"allOf": [
|
|
104
|
+
{
|
|
105
|
+
"$ref": "#/definitions/OxlintRules"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"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."
|
|
109
|
+
},
|
|
110
|
+
"settings": {
|
|
111
|
+
"default": {
|
|
112
|
+
"jsx-a11y": {
|
|
113
|
+
"polymorphicPropName": null,
|
|
114
|
+
"components": {},
|
|
115
|
+
"attributes": {}
|
|
116
|
+
},
|
|
117
|
+
"next": {
|
|
118
|
+
"rootDir": []
|
|
119
|
+
},
|
|
120
|
+
"react": {
|
|
121
|
+
"formComponents": [],
|
|
122
|
+
"linkComponents": []
|
|
123
|
+
},
|
|
124
|
+
"jsdoc": {
|
|
125
|
+
"ignorePrivate": false,
|
|
126
|
+
"ignoreInternal": false,
|
|
127
|
+
"ignoreReplacesDocs": true,
|
|
128
|
+
"overrideReplacesDocs": true,
|
|
129
|
+
"augmentsExtendsReplacesDocs": false,
|
|
130
|
+
"implementsReplacesDocs": false,
|
|
131
|
+
"exemptDestructuredRootsFromChecks": false,
|
|
132
|
+
"tagNamePreference": {}
|
|
133
|
+
},
|
|
134
|
+
"vitest": {
|
|
135
|
+
"typecheck": false
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"allOf": [
|
|
139
|
+
{
|
|
140
|
+
"$ref": "#/definitions/OxlintSettings"
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"additionalProperties": false,
|
|
146
|
+
"allowComments": true,
|
|
147
|
+
"allowTrailingCommas": true,
|
|
148
|
+
"definitions": {
|
|
149
|
+
"AllowWarnDeny": {
|
|
150
|
+
"oneOf": [
|
|
151
|
+
{
|
|
152
|
+
"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).",
|
|
153
|
+
"type": "string",
|
|
154
|
+
"enum": [
|
|
155
|
+
"allow",
|
|
156
|
+
"off",
|
|
157
|
+
"warn",
|
|
158
|
+
"error",
|
|
159
|
+
"deny"
|
|
160
|
+
],
|
|
161
|
+
"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)."
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"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).",
|
|
165
|
+
"type": "integer",
|
|
166
|
+
"format": "uint32",
|
|
167
|
+
"maximum": 2,
|
|
168
|
+
"minimum": 0,
|
|
169
|
+
"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)."
|
|
170
|
+
}
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
"CustomComponent": {
|
|
174
|
+
"anyOf": [
|
|
175
|
+
{
|
|
176
|
+
"type": "string"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "object",
|
|
180
|
+
"required": [
|
|
181
|
+
"attribute",
|
|
182
|
+
"name"
|
|
183
|
+
],
|
|
184
|
+
"properties": {
|
|
185
|
+
"attribute": {
|
|
186
|
+
"type": "string"
|
|
187
|
+
},
|
|
188
|
+
"name": {
|
|
189
|
+
"type": "string"
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "object",
|
|
195
|
+
"required": [
|
|
196
|
+
"attributes",
|
|
197
|
+
"name"
|
|
198
|
+
],
|
|
199
|
+
"properties": {
|
|
200
|
+
"attributes": {
|
|
201
|
+
"type": "array",
|
|
202
|
+
"items": {
|
|
203
|
+
"type": "string"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"name": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
"DummyRule": {
|
|
214
|
+
"anyOf": [
|
|
215
|
+
{
|
|
216
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"type": "array",
|
|
220
|
+
"items": true
|
|
221
|
+
}
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
"DummyRuleMap": {
|
|
225
|
+
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)",
|
|
226
|
+
"type": "object",
|
|
227
|
+
"additionalProperties": {
|
|
228
|
+
"$ref": "#/definitions/DummyRule"
|
|
229
|
+
},
|
|
230
|
+
"markdownDescription": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)"
|
|
231
|
+
},
|
|
232
|
+
"ExternalPluginEntry": {
|
|
233
|
+
"anyOf": [
|
|
234
|
+
{
|
|
235
|
+
"description": "Path or package name of the plugin",
|
|
236
|
+
"type": "string",
|
|
237
|
+
"markdownDescription": "Path or package name of the plugin"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"description": "Plugin with custom name/alias",
|
|
241
|
+
"type": "object",
|
|
242
|
+
"required": [
|
|
243
|
+
"name",
|
|
244
|
+
"specifier"
|
|
245
|
+
],
|
|
246
|
+
"properties": {
|
|
247
|
+
"name": {
|
|
248
|
+
"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\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- regex\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.",
|
|
249
|
+
"type": "string",
|
|
250
|
+
"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\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- regex\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."
|
|
251
|
+
},
|
|
252
|
+
"specifier": {
|
|
253
|
+
"description": "Path or package name of the plugin",
|
|
254
|
+
"type": "string",
|
|
255
|
+
"markdownDescription": "Path or package name of the plugin"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"additionalProperties": false,
|
|
259
|
+
"markdownDescription": "Plugin with custom name/alias"
|
|
260
|
+
}
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"GlobSet": {
|
|
264
|
+
"description": "A set of glob patterns.",
|
|
265
|
+
"type": "array",
|
|
266
|
+
"items": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"markdownDescription": "A set of glob patterns."
|
|
270
|
+
},
|
|
271
|
+
"GlobalValue": {
|
|
272
|
+
"type": "string",
|
|
273
|
+
"enum": [
|
|
274
|
+
"readonly",
|
|
275
|
+
"writable",
|
|
276
|
+
"off"
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
"JSDocPluginSettings": {
|
|
280
|
+
"type": "object",
|
|
281
|
+
"properties": {
|
|
282
|
+
"augmentsExtendsReplacesDocs": {
|
|
283
|
+
"description": "Only for `require-(yields|returns|description|example|param|throws)` rule",
|
|
284
|
+
"default": false,
|
|
285
|
+
"type": "boolean",
|
|
286
|
+
"markdownDescription": "Only for `require-(yields|returns|description|example|param|throws)` rule"
|
|
287
|
+
},
|
|
288
|
+
"exemptDestructuredRootsFromChecks": {
|
|
289
|
+
"description": "Only for `require-param-type` and `require-param-description` rule",
|
|
290
|
+
"default": false,
|
|
291
|
+
"type": "boolean",
|
|
292
|
+
"markdownDescription": "Only for `require-param-type` and `require-param-description` rule"
|
|
293
|
+
},
|
|
294
|
+
"ignoreInternal": {
|
|
295
|
+
"description": "For all rules but NOT apply to `empty-tags` rule",
|
|
296
|
+
"default": false,
|
|
297
|
+
"type": "boolean",
|
|
298
|
+
"markdownDescription": "For all rules but NOT apply to `empty-tags` rule"
|
|
299
|
+
},
|
|
300
|
+
"ignorePrivate": {
|
|
301
|
+
"description": "For all rules but NOT apply to `check-access` and `empty-tags` rule",
|
|
302
|
+
"default": false,
|
|
303
|
+
"type": "boolean",
|
|
304
|
+
"markdownDescription": "For all rules but NOT apply to `check-access` and `empty-tags` rule"
|
|
305
|
+
},
|
|
306
|
+
"ignoreReplacesDocs": {
|
|
307
|
+
"description": "Only for `require-(yields|returns|description|example|param|throws)` rule",
|
|
308
|
+
"default": true,
|
|
309
|
+
"type": "boolean",
|
|
310
|
+
"markdownDescription": "Only for `require-(yields|returns|description|example|param|throws)` rule"
|
|
311
|
+
},
|
|
312
|
+
"implementsReplacesDocs": {
|
|
313
|
+
"description": "Only for `require-(yields|returns|description|example|param|throws)` rule",
|
|
314
|
+
"default": false,
|
|
315
|
+
"type": "boolean",
|
|
316
|
+
"markdownDescription": "Only for `require-(yields|returns|description|example|param|throws)` rule"
|
|
317
|
+
},
|
|
318
|
+
"overrideReplacesDocs": {
|
|
319
|
+
"description": "Only for `require-(yields|returns|description|example|param|throws)` rule",
|
|
320
|
+
"default": true,
|
|
321
|
+
"type": "boolean",
|
|
322
|
+
"markdownDescription": "Only for `require-(yields|returns|description|example|param|throws)` rule"
|
|
323
|
+
},
|
|
324
|
+
"tagNamePreference": {
|
|
325
|
+
"default": {},
|
|
326
|
+
"type": "object",
|
|
327
|
+
"additionalProperties": {
|
|
328
|
+
"$ref": "#/definitions/TagNamePreference"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"JSXA11yPluginSettings": {
|
|
334
|
+
"description": "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.",
|
|
335
|
+
"type": "object",
|
|
336
|
+
"properties": {
|
|
337
|
+
"attributes": {
|
|
338
|
+
"description": "Map of attribute names to their DOM equivalents.\nThis is useful for non-React frameworks that use different attribute names.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"jsx-a11y\": {\n\"attributes\": {\n\"for\": [\"htmlFor\", \"for\"]\n}\n}\n}\n}\n```",
|
|
339
|
+
"default": {},
|
|
340
|
+
"type": "object",
|
|
341
|
+
"additionalProperties": {
|
|
342
|
+
"type": "array",
|
|
343
|
+
"items": {
|
|
344
|
+
"type": "string"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"markdownDescription": "Map of attribute names to their DOM equivalents.\nThis is useful for non-React frameworks that use different attribute names.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"jsx-a11y\": {\n\"attributes\": {\n\"for\": [\"htmlFor\", \"for\"]\n}\n}\n}\n}\n```"
|
|
348
|
+
},
|
|
349
|
+
"components": {
|
|
350
|
+
"description": "To have your custom components be checked as DOM elements, you can\nprovide a mapping of your component names to the DOM element name.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"jsx-a11y\": {\n\"components\": {\n\"Link\": \"a\",\n\"IconButton\": \"button\"\n}\n}\n}\n}\n```",
|
|
351
|
+
"default": {},
|
|
352
|
+
"type": "object",
|
|
353
|
+
"additionalProperties": {
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"markdownDescription": "To have your custom components be checked as DOM elements, you can\nprovide a mapping of your component names to the DOM element name.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"jsx-a11y\": {\n\"components\": {\n\"Link\": \"a\",\n\"IconButton\": \"button\"\n}\n}\n}\n}\n```"
|
|
357
|
+
},
|
|
358
|
+
"polymorphicPropName": {
|
|
359
|
+
"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`.",
|
|
360
|
+
"type": [
|
|
361
|
+
"string",
|
|
362
|
+
"null"
|
|
363
|
+
],
|
|
364
|
+
"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`."
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"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."
|
|
368
|
+
},
|
|
369
|
+
"LintPluginOptionsSchema": {
|
|
370
|
+
"type": "string",
|
|
371
|
+
"enum": [
|
|
372
|
+
"eslint",
|
|
373
|
+
"react",
|
|
374
|
+
"unicorn",
|
|
375
|
+
"typescript",
|
|
376
|
+
"oxc",
|
|
377
|
+
"import",
|
|
378
|
+
"jsdoc",
|
|
379
|
+
"jest",
|
|
380
|
+
"vitest",
|
|
381
|
+
"jsx-a11y",
|
|
382
|
+
"nextjs",
|
|
383
|
+
"react-perf",
|
|
384
|
+
"promise",
|
|
385
|
+
"node",
|
|
386
|
+
"vue"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
"LintPlugins": {
|
|
390
|
+
"type": "array",
|
|
391
|
+
"items": {
|
|
392
|
+
"anyOf": [
|
|
393
|
+
{
|
|
394
|
+
"$ref": "#/definitions/LintPluginOptionsSchema"
|
|
395
|
+
}
|
|
396
|
+
]
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"NextPluginSettings": {
|
|
400
|
+
"description": "Configure Next.js plugin rules.",
|
|
401
|
+
"type": "object",
|
|
402
|
+
"properties": {
|
|
403
|
+
"rootDir": {
|
|
404
|
+
"description": "The root directory of the Next.js project.\n\nThis is particularly useful when you have a monorepo and your Next.js\nproject is in a subfolder.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"next\": {\n\"rootDir\": \"apps/dashboard/\"\n}\n}\n}\n```",
|
|
405
|
+
"default": [],
|
|
406
|
+
"allOf": [
|
|
407
|
+
{
|
|
408
|
+
"$ref": "#/definitions/OneOrMany_for_String"
|
|
409
|
+
}
|
|
410
|
+
],
|
|
411
|
+
"markdownDescription": "The root directory of the Next.js project.\n\nThis is particularly useful when you have a monorepo and your Next.js\nproject is in a subfolder.\n\nExample:\n\n```json\n{\n\"settings\": {\n\"next\": {\n\"rootDir\": \"apps/dashboard/\"\n}\n}\n}\n```"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"markdownDescription": "Configure Next.js plugin rules."
|
|
415
|
+
},
|
|
416
|
+
"OneOrMany_for_String": {
|
|
417
|
+
"anyOf": [
|
|
418
|
+
{
|
|
419
|
+
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"type": "array",
|
|
423
|
+
"items": {
|
|
424
|
+
"type": "string"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
"OxlintCategories": {
|
|
430
|
+
"title": "Rule Categories",
|
|
431
|
+
"description": "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```",
|
|
432
|
+
"examples": [
|
|
433
|
+
{
|
|
434
|
+
"correctness": "warn"
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"type": "object",
|
|
438
|
+
"properties": {
|
|
439
|
+
"correctness": {
|
|
440
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
441
|
+
},
|
|
442
|
+
"nursery": {
|
|
443
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
444
|
+
},
|
|
445
|
+
"pedantic": {
|
|
446
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
447
|
+
},
|
|
448
|
+
"perf": {
|
|
449
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
450
|
+
},
|
|
451
|
+
"restriction": {
|
|
452
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
453
|
+
},
|
|
454
|
+
"style": {
|
|
455
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
456
|
+
},
|
|
457
|
+
"suspicious": {
|
|
458
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"additionalProperties": false,
|
|
462
|
+
"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```"
|
|
463
|
+
},
|
|
464
|
+
"OxlintEnv": {
|
|
465
|
+
"description": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\nSee [ESLint's list of environments](https://eslint.org/docs/v8.x/use/configure/language-options#specifying-environments)\nfor what environments are available and what each one provides.",
|
|
466
|
+
"type": "object",
|
|
467
|
+
"additionalProperties": {
|
|
468
|
+
"type": "boolean"
|
|
469
|
+
},
|
|
470
|
+
"markdownDescription": "Predefine global variables.\n\nEnvironments specify what global variables are predefined.\nSee [ESLint's list of environments](https://eslint.org/docs/v8.x/use/configure/language-options#specifying-environments)\nfor what environments are available and what each one provides."
|
|
471
|
+
},
|
|
472
|
+
"OxlintGlobals": {
|
|
473
|
+
"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\"`.",
|
|
474
|
+
"type": "object",
|
|
475
|
+
"additionalProperties": {
|
|
476
|
+
"$ref": "#/definitions/GlobalValue"
|
|
477
|
+
},
|
|
478
|
+
"markdownDescription": "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\"`."
|
|
479
|
+
},
|
|
480
|
+
"OxlintOverride": {
|
|
481
|
+
"type": "object",
|
|
482
|
+
"required": [
|
|
483
|
+
"files"
|
|
484
|
+
],
|
|
485
|
+
"properties": {
|
|
486
|
+
"env": {
|
|
487
|
+
"description": "Environments enable and disable collections of global variables.",
|
|
488
|
+
"anyOf": [
|
|
489
|
+
{
|
|
490
|
+
"$ref": "#/definitions/OxlintEnv"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"type": "null"
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"markdownDescription": "Environments enable and disable collections of global variables."
|
|
497
|
+
},
|
|
498
|
+
"files": {
|
|
499
|
+
"description": "A list of glob patterns to override.\n\n## Example\n`[ \"*.test.ts\", \"*.spec.ts\" ]`",
|
|
500
|
+
"allOf": [
|
|
501
|
+
{
|
|
502
|
+
"$ref": "#/definitions/GlobSet"
|
|
503
|
+
}
|
|
504
|
+
],
|
|
505
|
+
"markdownDescription": "A list of glob patterns to override.\n\n## Example\n`[ \"*.test.ts\", \"*.spec.ts\" ]`"
|
|
506
|
+
},
|
|
507
|
+
"globals": {
|
|
508
|
+
"description": "Enabled or disabled specific global variables.",
|
|
509
|
+
"anyOf": [
|
|
510
|
+
{
|
|
511
|
+
"$ref": "#/definitions/OxlintGlobals"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"type": "null"
|
|
515
|
+
}
|
|
516
|
+
],
|
|
517
|
+
"markdownDescription": "Enabled or disabled specific global variables."
|
|
518
|
+
},
|
|
519
|
+
"jsPlugins": {
|
|
520
|
+
"description": "JS plugins for this override.\n\nNote: JS plugins are experimental and not subject to semver.\nThey are not supported in language server at present.",
|
|
521
|
+
"anyOf": [
|
|
522
|
+
{
|
|
523
|
+
"type": "null"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"type": "array",
|
|
527
|
+
"items": {
|
|
528
|
+
"$ref": "#/definitions/ExternalPluginEntry"
|
|
529
|
+
},
|
|
530
|
+
"uniqueItems": true
|
|
531
|
+
}
|
|
532
|
+
],
|
|
533
|
+
"markdownDescription": "JS plugins for this override.\n\nNote: JS plugins are experimental and not subject to semver.\nThey are not supported in language server at present."
|
|
534
|
+
},
|
|
535
|
+
"plugins": {
|
|
536
|
+
"description": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used.",
|
|
537
|
+
"default": null,
|
|
538
|
+
"anyOf": [
|
|
539
|
+
{
|
|
540
|
+
"$ref": "#/definitions/LintPlugins"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "null"
|
|
544
|
+
}
|
|
545
|
+
],
|
|
546
|
+
"markdownDescription": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used."
|
|
547
|
+
},
|
|
548
|
+
"rules": {
|
|
549
|
+
"default": {},
|
|
550
|
+
"allOf": [
|
|
551
|
+
{
|
|
552
|
+
"$ref": "#/definitions/OxlintRules"
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"additionalProperties": false
|
|
558
|
+
},
|
|
559
|
+
"OxlintOverrides": {
|
|
560
|
+
"type": "array",
|
|
561
|
+
"items": {
|
|
562
|
+
"$ref": "#/definitions/OxlintOverride"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"OxlintRules": {
|
|
566
|
+
"$ref": "#/definitions/DummyRuleMap"
|
|
567
|
+
},
|
|
568
|
+
"OxlintSettings": {
|
|
569
|
+
"title": "Oxlint Plugin Settings",
|
|
570
|
+
"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```",
|
|
571
|
+
"type": "object",
|
|
572
|
+
"properties": {
|
|
573
|
+
"jsdoc": {
|
|
574
|
+
"default": {
|
|
575
|
+
"ignorePrivate": false,
|
|
576
|
+
"ignoreInternal": false,
|
|
577
|
+
"ignoreReplacesDocs": true,
|
|
578
|
+
"overrideReplacesDocs": true,
|
|
579
|
+
"augmentsExtendsReplacesDocs": false,
|
|
580
|
+
"implementsReplacesDocs": false,
|
|
581
|
+
"exemptDestructuredRootsFromChecks": false,
|
|
582
|
+
"tagNamePreference": {}
|
|
583
|
+
},
|
|
584
|
+
"allOf": [
|
|
585
|
+
{
|
|
586
|
+
"$ref": "#/definitions/JSDocPluginSettings"
|
|
587
|
+
}
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
"jsx-a11y": {
|
|
591
|
+
"default": {
|
|
592
|
+
"polymorphicPropName": null,
|
|
593
|
+
"components": {},
|
|
594
|
+
"attributes": {}
|
|
595
|
+
},
|
|
596
|
+
"allOf": [
|
|
597
|
+
{
|
|
598
|
+
"$ref": "#/definitions/JSXA11yPluginSettings"
|
|
599
|
+
}
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"next": {
|
|
603
|
+
"default": {
|
|
604
|
+
"rootDir": []
|
|
605
|
+
},
|
|
606
|
+
"allOf": [
|
|
607
|
+
{
|
|
608
|
+
"$ref": "#/definitions/NextPluginSettings"
|
|
609
|
+
}
|
|
610
|
+
]
|
|
611
|
+
},
|
|
612
|
+
"react": {
|
|
613
|
+
"default": {
|
|
614
|
+
"formComponents": [],
|
|
615
|
+
"linkComponents": []
|
|
616
|
+
},
|
|
617
|
+
"allOf": [
|
|
618
|
+
{
|
|
619
|
+
"$ref": "#/definitions/ReactPluginSettings"
|
|
620
|
+
}
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
"vitest": {
|
|
624
|
+
"default": {
|
|
625
|
+
"typecheck": false
|
|
626
|
+
},
|
|
627
|
+
"allOf": [
|
|
628
|
+
{
|
|
629
|
+
"$ref": "#/definitions/VitestPluginSettings"
|
|
630
|
+
}
|
|
631
|
+
]
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"markdownDescription": "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```"
|
|
635
|
+
},
|
|
636
|
+
"ReactPluginSettings": {
|
|
637
|
+
"description": "Configure React plugin rules.\n\nDerived from [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react#configuration-legacy-eslintrc-)",
|
|
638
|
+
"type": "object",
|
|
639
|
+
"properties": {
|
|
640
|
+
"formComponents": {
|
|
641
|
+
"description": "Components used as alternatives to `<form>` for forms, such as `<Formik>`.\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"formComponents\": [\n\"CustomForm\",\n// OtherForm is considered a form component and has an endpoint attribute\n{ \"name\": \"OtherForm\", \"formAttribute\": \"endpoint\" },\n// allows specifying multiple properties if necessary\n{ \"name\": \"Form\", \"formAttribute\": [\"registerEndpoint\", \"loginEndpoint\"] }\n]\n}\n}\n}\n```",
|
|
642
|
+
"default": [],
|
|
643
|
+
"type": "array",
|
|
644
|
+
"items": {
|
|
645
|
+
"$ref": "#/definitions/CustomComponent"
|
|
646
|
+
},
|
|
647
|
+
"markdownDescription": "Components used as alternatives to `<form>` for forms, such as `<Formik>`.\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"formComponents\": [\n\"CustomForm\",\n// OtherForm is considered a form component and has an endpoint attribute\n{ \"name\": \"OtherForm\", \"formAttribute\": \"endpoint\" },\n// allows specifying multiple properties if necessary\n{ \"name\": \"Form\", \"formAttribute\": [\"registerEndpoint\", \"loginEndpoint\"] }\n]\n}\n}\n}\n```"
|
|
648
|
+
},
|
|
649
|
+
"linkComponents": {
|
|
650
|
+
"description": "Components used as alternatives to `<a>` for linking, such as `<Link>`.\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"linkComponents\": [\n\"HyperLink\",\n// Use `linkAttribute` for components that use a different prop name\n// than `href`.\n{ \"name\": \"MyLink\", \"linkAttribute\": \"to\" },\n// allows specifying multiple properties if necessary\n{ \"name\": \"Link\", \"linkAttribute\": [\"to\", \"href\"] }\n]\n}\n}\n}\n```",
|
|
651
|
+
"default": [],
|
|
652
|
+
"type": "array",
|
|
653
|
+
"items": {
|
|
654
|
+
"$ref": "#/definitions/CustomComponent"
|
|
655
|
+
},
|
|
656
|
+
"markdownDescription": "Components used as alternatives to `<a>` for linking, such as `<Link>`.\n\nExample:\n\n```jsonc\n{\n\"settings\": {\n\"react\": {\n\"linkComponents\": [\n\"HyperLink\",\n// Use `linkAttribute` for components that use a different prop name\n// than `href`.\n{ \"name\": \"MyLink\", \"linkAttribute\": \"to\" },\n// allows specifying multiple properties if necessary\n{ \"name\": \"Link\", \"linkAttribute\": [\"to\", \"href\"] }\n]\n}\n}\n}\n```"
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"markdownDescription": "Configure React plugin rules.\n\nDerived from [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react#configuration-legacy-eslintrc-)"
|
|
660
|
+
},
|
|
661
|
+
"TagNamePreference": {
|
|
662
|
+
"anyOf": [
|
|
663
|
+
{
|
|
664
|
+
"type": "string"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"type": "object",
|
|
668
|
+
"required": [
|
|
669
|
+
"message",
|
|
670
|
+
"replacement"
|
|
671
|
+
],
|
|
672
|
+
"properties": {
|
|
673
|
+
"message": {
|
|
674
|
+
"type": "string"
|
|
675
|
+
},
|
|
676
|
+
"replacement": {
|
|
677
|
+
"type": "string"
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"type": "object",
|
|
683
|
+
"required": [
|
|
684
|
+
"message"
|
|
685
|
+
],
|
|
686
|
+
"properties": {
|
|
687
|
+
"message": {
|
|
688
|
+
"type": "string"
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"type": "boolean"
|
|
694
|
+
}
|
|
695
|
+
]
|
|
696
|
+
},
|
|
697
|
+
"VitestPluginSettings": {
|
|
698
|
+
"description": "Configure Vitest plugin rules.\n\nSee [eslint-plugin-vitest](https://github.com/vitest-dev/eslint-plugin-vitest)'s\nconfiguration for a full reference.",
|
|
699
|
+
"type": "object",
|
|
700
|
+
"properties": {
|
|
701
|
+
"typecheck": {
|
|
702
|
+
"description": "Whether to enable typecheck mode for Vitest rules.\nWhen enabled, some rules will skip certain checks for describe blocks\nto accommodate TypeScript type checking scenarios.",
|
|
703
|
+
"default": false,
|
|
704
|
+
"type": "boolean",
|
|
705
|
+
"markdownDescription": "Whether to enable typecheck mode for Vitest rules.\nWhen enabled, some rules will skip certain checks for describe blocks\nto accommodate TypeScript type checking scenarios."
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"markdownDescription": "Configure Vitest plugin rules.\n\nSee [eslint-plugin-vitest](https://github.com/vitest-dev/eslint-plugin-vitest)'s\nconfiguration for a full reference."
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"markdownDescription": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json --import-plugin`\n\n::: danger NOTE\n\nOnly the `.json` format is supported. You can use comments in configuration files.\n\n:::\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},\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```"
|
|
712
|
+
}
|