oxlint 1.53.0 → 1.55.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 +19 -55
- package/dist/bindings.js +26 -26
- package/dist/index.d.ts +21 -58
- package/dist/js_config.js +21 -6
- package/dist/lint.js +8 -2
- package/package.json +20 -20
|
@@ -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,7 +57,7 @@
|
|
|
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\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"
|
|
@@ -73,7 +70,7 @@
|
|
|
73
70
|
"uniqueItems": true
|
|
74
71
|
}
|
|
75
72
|
],
|
|
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
|
|
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\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```"
|
|
77
74
|
},
|
|
78
75
|
"options": {
|
|
79
76
|
"description": "Oxlint config options.",
|
|
@@ -96,12 +93,9 @@
|
|
|
96
93
|
"plugins": {
|
|
97
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.",
|
|
98
95
|
"default": null,
|
|
99
|
-
"
|
|
96
|
+
"allOf": [
|
|
100
97
|
{
|
|
101
98
|
"$ref": "#/definitions/LintPlugins"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"type": "null"
|
|
105
99
|
}
|
|
106
100
|
],
|
|
107
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."
|
|
@@ -370,10 +364,7 @@
|
|
|
370
364
|
},
|
|
371
365
|
"polymorphicPropName": {
|
|
372
366
|
"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
|
-
],
|
|
367
|
+
"type": "string",
|
|
377
368
|
"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
369
|
}
|
|
379
370
|
},
|
|
@@ -496,48 +487,33 @@
|
|
|
496
487
|
"properties": {
|
|
497
488
|
"denyWarnings": {
|
|
498
489
|
"description": "Ensure warnings produce a non-zero exit code.\n\nEquivalent to passing `--deny-warnings` on the CLI.",
|
|
499
|
-
"type":
|
|
500
|
-
"boolean",
|
|
501
|
-
"null"
|
|
502
|
-
],
|
|
490
|
+
"type": "boolean",
|
|
503
491
|
"markdownDescription": "Ensure warnings produce a non-zero exit code.\n\nEquivalent to passing `--deny-warnings` on the CLI."
|
|
504
492
|
},
|
|
505
493
|
"maxWarnings": {
|
|
506
494
|
"description": "Specify a warning threshold. Exits with an error status if warnings exceed this value.\n\nEquivalent to passing `--max-warnings` on the CLI.",
|
|
507
|
-
"type":
|
|
508
|
-
"integer",
|
|
509
|
-
"null"
|
|
510
|
-
],
|
|
495
|
+
"type": "integer",
|
|
511
496
|
"format": "uint",
|
|
512
497
|
"minimum": 0.0,
|
|
513
498
|
"markdownDescription": "Specify a warning threshold. Exits with an error status if warnings exceed this value.\n\nEquivalent to passing `--max-warnings` on the CLI."
|
|
514
499
|
},
|
|
515
500
|
"reportUnusedDisableDirectives": {
|
|
516
501
|
"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.",
|
|
517
|
-
"
|
|
502
|
+
"allOf": [
|
|
518
503
|
{
|
|
519
504
|
"$ref": "#/definitions/AllowWarnDeny"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"type": "null"
|
|
523
505
|
}
|
|
524
506
|
],
|
|
525
507
|
"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."
|
|
526
508
|
},
|
|
527
509
|
"typeAware": {
|
|
528
510
|
"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.",
|
|
529
|
-
"type":
|
|
530
|
-
"boolean",
|
|
531
|
-
"null"
|
|
532
|
-
],
|
|
511
|
+
"type": "boolean",
|
|
533
512
|
"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."
|
|
534
513
|
},
|
|
535
514
|
"typeCheck": {
|
|
536
515
|
"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.",
|
|
537
|
-
"type":
|
|
538
|
-
"boolean",
|
|
539
|
-
"null"
|
|
540
|
-
],
|
|
516
|
+
"type": "boolean",
|
|
541
517
|
"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."
|
|
542
518
|
}
|
|
543
519
|
},
|
|
@@ -552,12 +528,9 @@
|
|
|
552
528
|
"properties": {
|
|
553
529
|
"env": {
|
|
554
530
|
"description": "Environments enable and disable collections of global variables.",
|
|
555
|
-
"
|
|
531
|
+
"allOf": [
|
|
556
532
|
{
|
|
557
533
|
"$ref": "#/definitions/OxlintEnv"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"type": "null"
|
|
561
534
|
}
|
|
562
535
|
],
|
|
563
536
|
"markdownDescription": "Environments enable and disable collections of global variables."
|
|
@@ -573,18 +546,15 @@
|
|
|
573
546
|
},
|
|
574
547
|
"globals": {
|
|
575
548
|
"description": "Enabled or disabled specific global variables.",
|
|
576
|
-
"
|
|
549
|
+
"allOf": [
|
|
577
550
|
{
|
|
578
551
|
"$ref": "#/definitions/OxlintGlobals"
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"type": "null"
|
|
582
552
|
}
|
|
583
553
|
],
|
|
584
554
|
"markdownDescription": "Enabled or disabled specific global variables."
|
|
585
555
|
},
|
|
586
556
|
"jsPlugins": {
|
|
587
|
-
"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
|
|
557
|
+
"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.",
|
|
588
558
|
"anyOf": [
|
|
589
559
|
{
|
|
590
560
|
"type": "null"
|
|
@@ -597,17 +567,14 @@
|
|
|
597
567
|
"uniqueItems": true
|
|
598
568
|
}
|
|
599
569
|
],
|
|
600
|
-
"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
|
|
570
|
+
"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."
|
|
601
571
|
},
|
|
602
572
|
"plugins": {
|
|
603
573
|
"description": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used.",
|
|
604
574
|
"default": null,
|
|
605
|
-
"
|
|
575
|
+
"allOf": [
|
|
606
576
|
{
|
|
607
577
|
"$ref": "#/definitions/LintPlugins"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"type": "null"
|
|
611
578
|
}
|
|
612
579
|
],
|
|
613
580
|
"markdownDescription": "Optionally change what plugins are enabled for this override. When\nomitted, the base config's plugins are used."
|
|
@@ -736,10 +703,7 @@
|
|
|
736
703
|
"version": {
|
|
737
704
|
"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```",
|
|
738
705
|
"default": null,
|
|
739
|
-
"type":
|
|
740
|
-
"string",
|
|
741
|
-
"null"
|
|
742
|
-
],
|
|
706
|
+
"type": "string",
|
|
743
707
|
"pattern": "^[1-9]\\d*(\\.(0|[1-9]\\d*))?(\\.(0|[1-9]\\d*))?$",
|
|
744
708
|
"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```"
|
|
745
709
|
}
|
|
@@ -796,5 +760,5 @@
|
|
|
796
760
|
"markdownDescription": "Configure Vitest plugin rules.\n\nSee [eslint-plugin-vitest](https://github.com/vitest-dev/eslint-plugin-vitest)'s\nconfiguration for a full reference."
|
|
797
761
|
}
|
|
798
762
|
},
|
|
799
|
-
"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}
|
|
800
|
-
}
|
|
763
|
+
"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```"
|
|
764
|
+
}
|
package/dist/bindings.js
CHANGED
|
@@ -37,7 +37,7 @@ function requireNative() {
|
|
|
37
37
|
}
|
|
38
38
|
try {
|
|
39
39
|
let binding = require("@oxlint/binding-android-arm64"), bindingPackageVersion = require("@oxlint/binding-android-arm64/package.json").version;
|
|
40
|
-
if (bindingPackageVersion !== "1.
|
|
40
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
41
41
|
return binding;
|
|
42
42
|
} catch (e) {
|
|
43
43
|
loadErrors.push(e);
|
|
@@ -50,7 +50,7 @@ function requireNative() {
|
|
|
50
50
|
}
|
|
51
51
|
try {
|
|
52
52
|
let binding = require("@oxlint/binding-android-arm-eabi"), bindingPackageVersion = require("@oxlint/binding-android-arm-eabi/package.json").version;
|
|
53
|
-
if (bindingPackageVersion !== "1.
|
|
53
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
54
54
|
return binding;
|
|
55
55
|
} catch (e) {
|
|
56
56
|
loadErrors.push(e);
|
|
@@ -64,7 +64,7 @@ function requireNative() {
|
|
|
64
64
|
}
|
|
65
65
|
try {
|
|
66
66
|
let binding = require("@oxlint/binding-win32-x64-gnu"), bindingPackageVersion = require("@oxlint/binding-win32-x64-gnu/package.json").version;
|
|
67
|
-
if (bindingPackageVersion !== "1.
|
|
67
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
68
68
|
return binding;
|
|
69
69
|
} catch (e) {
|
|
70
70
|
loadErrors.push(e);
|
|
@@ -77,7 +77,7 @@ function requireNative() {
|
|
|
77
77
|
}
|
|
78
78
|
try {
|
|
79
79
|
let binding = require("@oxlint/binding-win32-x64-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-x64-msvc/package.json").version;
|
|
80
|
-
if (bindingPackageVersion !== "1.
|
|
80
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
81
81
|
return binding;
|
|
82
82
|
} catch (e) {
|
|
83
83
|
loadErrors.push(e);
|
|
@@ -91,7 +91,7 @@ function requireNative() {
|
|
|
91
91
|
}
|
|
92
92
|
try {
|
|
93
93
|
let binding = require("@oxlint/binding-win32-ia32-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-ia32-msvc/package.json").version;
|
|
94
|
-
if (bindingPackageVersion !== "1.
|
|
94
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
95
95
|
return binding;
|
|
96
96
|
} catch (e) {
|
|
97
97
|
loadErrors.push(e);
|
|
@@ -104,7 +104,7 @@ function requireNative() {
|
|
|
104
104
|
}
|
|
105
105
|
try {
|
|
106
106
|
let binding = require("@oxlint/binding-win32-arm64-msvc"), bindingPackageVersion = require("@oxlint/binding-win32-arm64-msvc/package.json").version;
|
|
107
|
-
if (bindingPackageVersion !== "1.
|
|
107
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
108
108
|
return binding;
|
|
109
109
|
} catch (e) {
|
|
110
110
|
loadErrors.push(e);
|
|
@@ -118,7 +118,7 @@ function requireNative() {
|
|
|
118
118
|
}
|
|
119
119
|
try {
|
|
120
120
|
let binding = require("@oxlint/binding-darwin-universal"), bindingPackageVersion = require("@oxlint/binding-darwin-universal/package.json").version;
|
|
121
|
-
if (bindingPackageVersion !== "1.
|
|
121
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
122
122
|
return binding;
|
|
123
123
|
} catch (e) {
|
|
124
124
|
loadErrors.push(e);
|
|
@@ -131,7 +131,7 @@ function requireNative() {
|
|
|
131
131
|
}
|
|
132
132
|
try {
|
|
133
133
|
let binding = require("@oxlint/binding-darwin-x64"), bindingPackageVersion = require("@oxlint/binding-darwin-x64/package.json").version;
|
|
134
|
-
if (bindingPackageVersion !== "1.
|
|
134
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
135
135
|
return binding;
|
|
136
136
|
} catch (e) {
|
|
137
137
|
loadErrors.push(e);
|
|
@@ -144,7 +144,7 @@ function requireNative() {
|
|
|
144
144
|
}
|
|
145
145
|
try {
|
|
146
146
|
let binding = require("@oxlint/binding-darwin-arm64"), bindingPackageVersion = require("@oxlint/binding-darwin-arm64/package.json").version;
|
|
147
|
-
if (bindingPackageVersion !== "1.
|
|
147
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
148
148
|
return binding;
|
|
149
149
|
} catch (e) {
|
|
150
150
|
loadErrors.push(e);
|
|
@@ -158,7 +158,7 @@ function requireNative() {
|
|
|
158
158
|
}
|
|
159
159
|
try {
|
|
160
160
|
let binding = require("@oxlint/binding-freebsd-x64"), bindingPackageVersion = require("@oxlint/binding-freebsd-x64/package.json").version;
|
|
161
|
-
if (bindingPackageVersion !== "1.
|
|
161
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
162
162
|
return binding;
|
|
163
163
|
} catch (e) {
|
|
164
164
|
loadErrors.push(e);
|
|
@@ -171,7 +171,7 @@ function requireNative() {
|
|
|
171
171
|
}
|
|
172
172
|
try {
|
|
173
173
|
let binding = require("@oxlint/binding-freebsd-arm64"), bindingPackageVersion = require("@oxlint/binding-freebsd-arm64/package.json").version;
|
|
174
|
-
if (bindingPackageVersion !== "1.
|
|
174
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
175
175
|
return binding;
|
|
176
176
|
} catch (e) {
|
|
177
177
|
loadErrors.push(e);
|
|
@@ -185,7 +185,7 @@ function requireNative() {
|
|
|
185
185
|
}
|
|
186
186
|
try {
|
|
187
187
|
let binding = require("@oxlint/binding-linux-x64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-x64-musl/package.json").version;
|
|
188
|
-
if (bindingPackageVersion !== "1.
|
|
188
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
189
189
|
return binding;
|
|
190
190
|
} catch (e) {
|
|
191
191
|
loadErrors.push(e);
|
|
@@ -198,7 +198,7 @@ function requireNative() {
|
|
|
198
198
|
}
|
|
199
199
|
try {
|
|
200
200
|
let binding = require("@oxlint/binding-linux-x64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-x64-gnu/package.json").version;
|
|
201
|
-
if (bindingPackageVersion !== "1.
|
|
201
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
202
202
|
return binding;
|
|
203
203
|
} catch (e) {
|
|
204
204
|
loadErrors.push(e);
|
|
@@ -212,7 +212,7 @@ function requireNative() {
|
|
|
212
212
|
}
|
|
213
213
|
try {
|
|
214
214
|
let binding = require("@oxlint/binding-linux-arm64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-arm64-musl/package.json").version;
|
|
215
|
-
if (bindingPackageVersion !== "1.
|
|
215
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
216
216
|
return binding;
|
|
217
217
|
} catch (e) {
|
|
218
218
|
loadErrors.push(e);
|
|
@@ -225,7 +225,7 @@ function requireNative() {
|
|
|
225
225
|
}
|
|
226
226
|
try {
|
|
227
227
|
let binding = require("@oxlint/binding-linux-arm64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-arm64-gnu/package.json").version;
|
|
228
|
-
if (bindingPackageVersion !== "1.
|
|
228
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
229
229
|
return binding;
|
|
230
230
|
} catch (e) {
|
|
231
231
|
loadErrors.push(e);
|
|
@@ -239,7 +239,7 @@ function requireNative() {
|
|
|
239
239
|
}
|
|
240
240
|
try {
|
|
241
241
|
let binding = require("@oxlint/binding-linux-arm-musleabihf"), bindingPackageVersion = require("@oxlint/binding-linux-arm-musleabihf/package.json").version;
|
|
242
|
-
if (bindingPackageVersion !== "1.
|
|
242
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
243
243
|
return binding;
|
|
244
244
|
} catch (e) {
|
|
245
245
|
loadErrors.push(e);
|
|
@@ -252,7 +252,7 @@ function requireNative() {
|
|
|
252
252
|
}
|
|
253
253
|
try {
|
|
254
254
|
let binding = require("@oxlint/binding-linux-arm-gnueabihf"), bindingPackageVersion = require("@oxlint/binding-linux-arm-gnueabihf/package.json").version;
|
|
255
|
-
if (bindingPackageVersion !== "1.
|
|
255
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
256
256
|
return binding;
|
|
257
257
|
} catch (e) {
|
|
258
258
|
loadErrors.push(e);
|
|
@@ -266,7 +266,7 @@ function requireNative() {
|
|
|
266
266
|
}
|
|
267
267
|
try {
|
|
268
268
|
let binding = require("@oxlint/binding-linux-loong64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-loong64-musl/package.json").version;
|
|
269
|
-
if (bindingPackageVersion !== "1.
|
|
269
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
270
270
|
return binding;
|
|
271
271
|
} catch (e) {
|
|
272
272
|
loadErrors.push(e);
|
|
@@ -279,7 +279,7 @@ function requireNative() {
|
|
|
279
279
|
}
|
|
280
280
|
try {
|
|
281
281
|
let binding = require("@oxlint/binding-linux-loong64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-loong64-gnu/package.json").version;
|
|
282
|
-
if (bindingPackageVersion !== "1.
|
|
282
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
283
283
|
return binding;
|
|
284
284
|
} catch (e) {
|
|
285
285
|
loadErrors.push(e);
|
|
@@ -293,7 +293,7 @@ function requireNative() {
|
|
|
293
293
|
}
|
|
294
294
|
try {
|
|
295
295
|
let binding = require("@oxlint/binding-linux-riscv64-musl"), bindingPackageVersion = require("@oxlint/binding-linux-riscv64-musl/package.json").version;
|
|
296
|
-
if (bindingPackageVersion !== "1.
|
|
296
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
297
297
|
return binding;
|
|
298
298
|
} catch (e) {
|
|
299
299
|
loadErrors.push(e);
|
|
@@ -306,7 +306,7 @@ function requireNative() {
|
|
|
306
306
|
}
|
|
307
307
|
try {
|
|
308
308
|
let binding = require("@oxlint/binding-linux-riscv64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-riscv64-gnu/package.json").version;
|
|
309
|
-
if (bindingPackageVersion !== "1.
|
|
309
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
310
310
|
return binding;
|
|
311
311
|
} catch (e) {
|
|
312
312
|
loadErrors.push(e);
|
|
@@ -320,7 +320,7 @@ function requireNative() {
|
|
|
320
320
|
}
|
|
321
321
|
try {
|
|
322
322
|
let binding = require("@oxlint/binding-linux-ppc64-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-ppc64-gnu/package.json").version;
|
|
323
|
-
if (bindingPackageVersion !== "1.
|
|
323
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
324
324
|
return binding;
|
|
325
325
|
} catch (e) {
|
|
326
326
|
loadErrors.push(e);
|
|
@@ -333,7 +333,7 @@ function requireNative() {
|
|
|
333
333
|
}
|
|
334
334
|
try {
|
|
335
335
|
let binding = require("@oxlint/binding-linux-s390x-gnu"), bindingPackageVersion = require("@oxlint/binding-linux-s390x-gnu/package.json").version;
|
|
336
|
-
if (bindingPackageVersion !== "1.
|
|
336
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
337
337
|
return binding;
|
|
338
338
|
} catch (e) {
|
|
339
339
|
loadErrors.push(e);
|
|
@@ -347,7 +347,7 @@ function requireNative() {
|
|
|
347
347
|
}
|
|
348
348
|
try {
|
|
349
349
|
let binding = require("@oxlint/binding-openharmony-arm64"), bindingPackageVersion = require("@oxlint/binding-openharmony-arm64/package.json").version;
|
|
350
|
-
if (bindingPackageVersion !== "1.
|
|
350
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
351
351
|
return binding;
|
|
352
352
|
} catch (e) {
|
|
353
353
|
loadErrors.push(e);
|
|
@@ -360,7 +360,7 @@ function requireNative() {
|
|
|
360
360
|
}
|
|
361
361
|
try {
|
|
362
362
|
let binding = require("@oxlint/binding-openharmony-x64"), bindingPackageVersion = require("@oxlint/binding-openharmony-x64/package.json").version;
|
|
363
|
-
if (bindingPackageVersion !== "1.
|
|
363
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
364
364
|
return binding;
|
|
365
365
|
} catch (e) {
|
|
366
366
|
loadErrors.push(e);
|
|
@@ -373,7 +373,7 @@ function requireNative() {
|
|
|
373
373
|
}
|
|
374
374
|
try {
|
|
375
375
|
let binding = require("@oxlint/binding-openharmony-arm"), bindingPackageVersion = require("@oxlint/binding-openharmony-arm/package.json").version;
|
|
376
|
-
if (bindingPackageVersion !== "1.
|
|
376
|
+
if (bindingPackageVersion !== "1.55.0" && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== "0") throw Error(`Native binding package version mismatch, expected 1.55.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
377
377
|
return binding;
|
|
378
378
|
} catch (e) {
|
|
379
379
|
loadErrors.push(e);
|
package/dist/index.d.ts
CHANGED
|
@@ -145,43 +145,6 @@ type CustomComponent = string | {
|
|
|
145
145
|
* }
|
|
146
146
|
* }
|
|
147
147
|
* ]
|
|
148
|
-
* }
|
|
149
|
-
* });
|
|
150
|
-
* ```
|
|
151
|
-
*
|
|
152
|
-
* `oxlint.config.ts`
|
|
153
|
-
*
|
|
154
|
-
* ```ts
|
|
155
|
-
* import { defineConfig } from "oxlint";
|
|
156
|
-
*
|
|
157
|
-
* export default defineConfig({
|
|
158
|
-
* plugins: ["import", "typescript", "unicorn"],
|
|
159
|
-
* env: {
|
|
160
|
-
* "browser": true
|
|
161
|
-
* },
|
|
162
|
-
* globals: {
|
|
163
|
-
* "foo": "readonly"
|
|
164
|
-
* },
|
|
165
|
-
* settings: {
|
|
166
|
-
* react: {
|
|
167
|
-
* version: "18.2.0"
|
|
168
|
-
* },
|
|
169
|
-
* custom: { option: true }
|
|
170
|
-
* },
|
|
171
|
-
* rules: {
|
|
172
|
-
* "eqeqeq": "warn",
|
|
173
|
-
* "import/no-cycle": "error",
|
|
174
|
-
* "react/self-closing-comp": ["error", { "html": false }]
|
|
175
|
-
* },
|
|
176
|
-
* overrides: [
|
|
177
|
-
* {
|
|
178
|
-
* files: ["*.test.ts", "*.spec.ts"],
|
|
179
|
-
* rules: {
|
|
180
|
-
* "@typescript-eslint/no-explicit-any": "off"
|
|
181
|
-
* }
|
|
182
|
-
* }
|
|
183
|
-
* ]
|
|
184
|
-
* }
|
|
185
148
|
* });
|
|
186
149
|
* ```
|
|
187
150
|
*/
|
|
@@ -189,7 +152,7 @@ interface Oxlintrc$1 {
|
|
|
189
152
|
/**
|
|
190
153
|
* Schema URI for editor tooling.
|
|
191
154
|
*/
|
|
192
|
-
$schema?: string
|
|
155
|
+
$schema?: string;
|
|
193
156
|
categories?: RuleCategories;
|
|
194
157
|
/**
|
|
195
158
|
* Environments enable and disable collections of global variables.
|
|
@@ -216,7 +179,7 @@ interface Oxlintrc$1 {
|
|
|
216
179
|
* Read more about JS plugins in
|
|
217
180
|
* [the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
|
|
218
181
|
*
|
|
219
|
-
* Note: JS plugins are
|
|
182
|
+
* Note: JS plugins are in alpha and not subject to semver.
|
|
220
183
|
*
|
|
221
184
|
* Examples:
|
|
222
185
|
*
|
|
@@ -271,7 +234,7 @@ interface Oxlintrc$1 {
|
|
|
271
234
|
* NOTE: Setting the `plugins` field will overwrite the base set of plugins.
|
|
272
235
|
* The `plugins` array should reflect all of the plugins you want to use.
|
|
273
236
|
*/
|
|
274
|
-
plugins?: LintPlugins
|
|
237
|
+
plugins?: LintPlugins;
|
|
275
238
|
/**
|
|
276
239
|
* Example
|
|
277
240
|
*
|
|
@@ -373,26 +336,26 @@ interface OxlintGlobals {
|
|
|
373
336
|
* Options for the linter.
|
|
374
337
|
*/
|
|
375
338
|
interface OxlintOptions {
|
|
376
|
-
/**
|
|
377
|
-
* Report unused disable directives (e.g. `// oxlint-disable-line` or `// eslint-disable-line`).
|
|
378
|
-
*
|
|
379
|
-
* Equivalent to passing `--report-unused-disable-directives-severity` on the CLI.
|
|
380
|
-
* CLI flags take precedence over this value when both are set.
|
|
381
|
-
* Only supported in the root configuration file.
|
|
382
|
-
*/
|
|
383
|
-
reportUnusedDisableDirectives?: AllowWarnDeny | null;
|
|
384
339
|
/**
|
|
385
340
|
* Ensure warnings produce a non-zero exit code.
|
|
386
341
|
*
|
|
387
342
|
* Equivalent to passing `--deny-warnings` on the CLI.
|
|
388
343
|
*/
|
|
389
|
-
denyWarnings?: boolean
|
|
344
|
+
denyWarnings?: boolean;
|
|
390
345
|
/**
|
|
391
346
|
* Specify a warning threshold. Exits with an error status if warnings exceed this value.
|
|
392
347
|
*
|
|
393
348
|
* Equivalent to passing `--max-warnings` on the CLI.
|
|
394
349
|
*/
|
|
395
|
-
maxWarnings?: number
|
|
350
|
+
maxWarnings?: number;
|
|
351
|
+
/**
|
|
352
|
+
* Report unused disable directives (e.g. `// oxlint-disable-line` or `// eslint-disable-line`).
|
|
353
|
+
*
|
|
354
|
+
* Equivalent to passing `--report-unused-disable-directives-severity` on the CLI.
|
|
355
|
+
* CLI flags take precedence over this value when both are set.
|
|
356
|
+
* Only supported in the root configuration file.
|
|
357
|
+
*/
|
|
358
|
+
reportUnusedDisableDirectives?: AllowWarnDeny;
|
|
396
359
|
/**
|
|
397
360
|
* Enable rules that require type information.
|
|
398
361
|
*
|
|
@@ -400,7 +363,7 @@ interface OxlintOptions {
|
|
|
400
363
|
*
|
|
401
364
|
* Note that this requires the `oxlint-tsgolint` package to be installed.
|
|
402
365
|
*/
|
|
403
|
-
typeAware?: boolean
|
|
366
|
+
typeAware?: boolean;
|
|
404
367
|
/**
|
|
405
368
|
* Enable experimental type checking (includes TypeScript compiler diagnostics).
|
|
406
369
|
*
|
|
@@ -408,13 +371,13 @@ interface OxlintOptions {
|
|
|
408
371
|
*
|
|
409
372
|
* Note that this requires the `oxlint-tsgolint` package to be installed.
|
|
410
373
|
*/
|
|
411
|
-
typeCheck?: boolean
|
|
374
|
+
typeCheck?: boolean;
|
|
412
375
|
}
|
|
413
376
|
interface OxlintOverride {
|
|
414
377
|
/**
|
|
415
378
|
* Environments enable and disable collections of global variables.
|
|
416
379
|
*/
|
|
417
|
-
env?: OxlintEnv
|
|
380
|
+
env?: OxlintEnv;
|
|
418
381
|
/**
|
|
419
382
|
* A list of glob patterns to override.
|
|
420
383
|
*
|
|
@@ -425,21 +388,21 @@ interface OxlintOverride {
|
|
|
425
388
|
/**
|
|
426
389
|
* Enabled or disabled specific global variables.
|
|
427
390
|
*/
|
|
428
|
-
globals?: OxlintGlobals
|
|
391
|
+
globals?: OxlintGlobals;
|
|
429
392
|
/**
|
|
430
393
|
* JS plugins for this override, allows usage of ESLint plugins with Oxlint.
|
|
431
394
|
*
|
|
432
395
|
* Read more about JS plugins in
|
|
433
396
|
* [the docs](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
|
|
434
397
|
*
|
|
435
|
-
* Note: JS plugins are
|
|
398
|
+
* Note: JS plugins are in alpha and not subject to semver.
|
|
436
399
|
*/
|
|
437
400
|
jsPlugins?: null | ExternalPluginEntry[];
|
|
438
401
|
/**
|
|
439
402
|
* Optionally change what plugins are enabled for this override. When
|
|
440
403
|
* omitted, the base config's plugins are used.
|
|
441
404
|
*/
|
|
442
|
-
plugins?: LintPlugins
|
|
405
|
+
plugins?: LintPlugins;
|
|
443
406
|
rules?: DummyRuleMap;
|
|
444
407
|
}
|
|
445
408
|
/**
|
|
@@ -587,7 +550,7 @@ interface JSXA11YPluginSettings {
|
|
|
587
550
|
* Will be treated as an `h3`. If not set, this component will be treated
|
|
588
551
|
* as a `Box`.
|
|
589
552
|
*/
|
|
590
|
-
polymorphicPropName?: string
|
|
553
|
+
polymorphicPropName?: string;
|
|
591
554
|
[k: string]: unknown;
|
|
592
555
|
}
|
|
593
556
|
/**
|
|
@@ -699,7 +662,7 @@ interface ReactPluginSettings {
|
|
|
699
662
|
* }
|
|
700
663
|
* ```
|
|
701
664
|
*/
|
|
702
|
-
version?: string
|
|
665
|
+
version?: string;
|
|
703
666
|
[k: string]: unknown;
|
|
704
667
|
}
|
|
705
668
|
/**
|
package/dist/js_config.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { n as isDefineConfig } from "./config.js";
|
|
2
2
|
import { i as DateNow, o as JSONStringify, r as ArrayIsArray, t as getErrorMessage } from "./utils.js";
|
|
3
|
+
import { basename } from "node:path";
|
|
3
4
|
//#region src-js/js_config.ts
|
|
5
|
+
const isObject = (v) => typeof v == "object" && !!v && !ArrayIsArray(v), VITE_OXLINT_CONFIG_FIELD = "lint";
|
|
4
6
|
function validateConfigExtends(root) {
|
|
5
7
|
let visited = /* @__PURE__ */ new WeakSet(), inStack = /* @__PURE__ */ new WeakSet(), stackObjects = [], stackPaths = [], formatCycleError = (refPath, cycleStart, idx) => `\`extends\` contains a circular reference.
|
|
6
8
|
|
|
@@ -16,7 +18,7 @@ ${refPath} points back to ${cycleStart}\nCycle: ${idx === -1 ? `${cycleStart} ->
|
|
|
16
18
|
if (!ArrayIsArray(maybeExtends)) throw Error("`extends` must be an array of config objects (strings/paths are not supported).");
|
|
17
19
|
for (let i = 0; i < maybeExtends.length; i++) {
|
|
18
20
|
let item = maybeExtends[i];
|
|
19
|
-
if (
|
|
21
|
+
if (!isObject(item)) throw Error(`\`extends[${i}]\` must be a config object (strings/paths are not supported).`);
|
|
20
22
|
let itemPath = `${path}.extends[${i}]`;
|
|
21
23
|
if (inStack.has(item)) {
|
|
22
24
|
let idx = stackObjects.indexOf(item), cycleStart = idx === -1 ? "<unknown>" : stackPaths[idx];
|
|
@@ -43,12 +45,25 @@ async function loadJsConfigs(paths) {
|
|
|
43
45
|
let cacheKey = DateNow(), results = await Promise.allSettled(paths.map(async (path) => {
|
|
44
46
|
let config = (await import(new URL(`file://${path}?cache=${cacheKey}`).href)).default;
|
|
45
47
|
if (config === void 0) throw Error("Configuration file has no default export.");
|
|
46
|
-
if (
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
if (basename(path) === "vite.config.ts") {
|
|
49
|
+
if (!isObject(config)) return {
|
|
50
|
+
path,
|
|
51
|
+
config: null
|
|
52
|
+
};
|
|
53
|
+
let lintConfig = config[VITE_OXLINT_CONFIG_FIELD];
|
|
54
|
+
if (lintConfig === void 0) return {
|
|
55
|
+
path,
|
|
56
|
+
config: null
|
|
57
|
+
};
|
|
58
|
+
if (!isObject(lintConfig)) throw Error(`The \`${VITE_OXLINT_CONFIG_FIELD}\` field in the default export must be an object.`);
|
|
59
|
+
return validateConfigExtends(lintConfig), {
|
|
60
|
+
path,
|
|
61
|
+
config: lintConfig
|
|
62
|
+
};
|
|
50
63
|
}
|
|
51
|
-
|
|
64
|
+
if (!isObject(config)) throw Error("Configuration file must have a default export that is an object.");
|
|
65
|
+
if (!isDefineConfig(config)) throw Error("Configuration file must wrap its default export with defineConfig() from \"oxlint\".");
|
|
66
|
+
return validateConfigExtends(config), {
|
|
52
67
|
path,
|
|
53
68
|
config
|
|
54
69
|
};
|
package/dist/lint.js
CHANGED
|
@@ -15,6 +15,9 @@ var __create = Object.create, __defProp = Object.defineProperty, __getOwnPropDes
|
|
|
15
15
|
}) : target, mod)), __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src-js/generated/constants.ts
|
|
18
|
+
/**
|
|
19
|
+
* Total size of the transfer buffer in bytes (block size minus allocator metadata).
|
|
20
|
+
*/
|
|
18
21
|
const BUFFER_SIZE = 2147483616, BUFFER_ALIGN = 4294967296, ACTIVE_SIZE = 2147483552, DATA_POINTER_POS_32 = 536870900, { freeze } = Object, $EMPTY = freeze([]), DECORATORS__KEY__TYPE_ANNOTATION__VALUE = freeze([
|
|
19
22
|
"decorators",
|
|
20
23
|
"key",
|
|
@@ -13242,7 +13245,7 @@ function resetSettings() {
|
|
|
13242
13245
|
}
|
|
13243
13246
|
//#endregion
|
|
13244
13247
|
//#region package.json
|
|
13245
|
-
var version = "1.
|
|
13248
|
+
var version = "1.55.0";
|
|
13246
13249
|
//#endregion
|
|
13247
13250
|
//#region src-js/plugins/context.ts
|
|
13248
13251
|
let filePath = null, cwd = null;
|
|
@@ -22331,7 +22334,10 @@ function finalizeCompiledVisitor() {
|
|
|
22331
22334
|
}
|
|
22332
22335
|
activeCfgVisitorsCount = 0;
|
|
22333
22336
|
}
|
|
22334
|
-
for (let i = visitPropsCacheNextIndex - 1; i >= 0; i--)
|
|
22337
|
+
for (let i = visitPropsCacheNextIndex - 1; i >= 0; i--) {
|
|
22338
|
+
let visitProp = visitPropsCache[i];
|
|
22339
|
+
visitProp.fn = null, visitProp.selectorStr = null;
|
|
22340
|
+
}
|
|
22335
22341
|
return visitPropsCacheNextIndex = 0, activeLeafVisitorsCount = 0, hasActiveVisitors = !1, visitState;
|
|
22336
22342
|
}
|
|
22337
22343
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxlint",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.55.0",
|
|
4
4
|
"description": "Linter for the JavaScript Oxidation Compiler",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -82,24 +82,24 @@
|
|
|
82
82
|
},
|
|
83
83
|
"preferUnplugged": true,
|
|
84
84
|
"optionalDependencies": {
|
|
85
|
-
"@oxlint/binding-darwin-arm64": "1.
|
|
86
|
-
"@oxlint/binding-android-arm64": "1.
|
|
87
|
-
"@oxlint/binding-win32-arm64-msvc": "1.
|
|
88
|
-
"@oxlint/binding-linux-arm64-gnu": "1.
|
|
89
|
-
"@oxlint/binding-linux-arm64-musl": "1.
|
|
90
|
-
"@oxlint/binding-openharmony-arm64": "1.
|
|
91
|
-
"@oxlint/binding-android-arm-eabi": "1.
|
|
92
|
-
"@oxlint/binding-linux-arm-gnueabihf": "1.
|
|
93
|
-
"@oxlint/binding-linux-arm-musleabihf": "1.
|
|
94
|
-
"@oxlint/binding-win32-ia32-msvc": "1.
|
|
95
|
-
"@oxlint/binding-linux-ppc64-gnu": "1.
|
|
96
|
-
"@oxlint/binding-linux-riscv64-gnu": "1.
|
|
97
|
-
"@oxlint/binding-linux-riscv64-musl": "1.
|
|
98
|
-
"@oxlint/binding-linux-s390x-gnu": "1.
|
|
99
|
-
"@oxlint/binding-darwin-x64": "1.
|
|
100
|
-
"@oxlint/binding-win32-x64-msvc": "1.
|
|
101
|
-
"@oxlint/binding-freebsd-x64": "1.
|
|
102
|
-
"@oxlint/binding-linux-x64-gnu": "1.
|
|
103
|
-
"@oxlint/binding-linux-x64-musl": "1.
|
|
85
|
+
"@oxlint/binding-darwin-arm64": "1.55.0",
|
|
86
|
+
"@oxlint/binding-android-arm64": "1.55.0",
|
|
87
|
+
"@oxlint/binding-win32-arm64-msvc": "1.55.0",
|
|
88
|
+
"@oxlint/binding-linux-arm64-gnu": "1.55.0",
|
|
89
|
+
"@oxlint/binding-linux-arm64-musl": "1.55.0",
|
|
90
|
+
"@oxlint/binding-openharmony-arm64": "1.55.0",
|
|
91
|
+
"@oxlint/binding-android-arm-eabi": "1.55.0",
|
|
92
|
+
"@oxlint/binding-linux-arm-gnueabihf": "1.55.0",
|
|
93
|
+
"@oxlint/binding-linux-arm-musleabihf": "1.55.0",
|
|
94
|
+
"@oxlint/binding-win32-ia32-msvc": "1.55.0",
|
|
95
|
+
"@oxlint/binding-linux-ppc64-gnu": "1.55.0",
|
|
96
|
+
"@oxlint/binding-linux-riscv64-gnu": "1.55.0",
|
|
97
|
+
"@oxlint/binding-linux-riscv64-musl": "1.55.0",
|
|
98
|
+
"@oxlint/binding-linux-s390x-gnu": "1.55.0",
|
|
99
|
+
"@oxlint/binding-darwin-x64": "1.55.0",
|
|
100
|
+
"@oxlint/binding-win32-x64-msvc": "1.55.0",
|
|
101
|
+
"@oxlint/binding-freebsd-x64": "1.55.0",
|
|
102
|
+
"@oxlint/binding-linux-x64-gnu": "1.55.0",
|
|
103
|
+
"@oxlint/binding-linux-x64-musl": "1.55.0"
|
|
104
104
|
}
|
|
105
105
|
}
|