oxlint 1.71.0 → 1.73.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 +291 -21
- package/dist/bindings.js +26 -26
- package/dist/index.d.ts +63 -8
- package/dist/lint.js +10 -10
- package/dist/plugins-dev.d.ts +4 -4
- package/package.json +21 -21
|
@@ -4441,7 +4441,24 @@
|
|
|
4441
4441
|
"$ref": "#/definitions/RuleNoConfig"
|
|
4442
4442
|
},
|
|
4443
4443
|
"no-constant-binary-expression": {
|
|
4444
|
-
"
|
|
4444
|
+
"anyOf": [
|
|
4445
|
+
{
|
|
4446
|
+
"$ref": "#/definitions/RuleNoConfig"
|
|
4447
|
+
},
|
|
4448
|
+
{
|
|
4449
|
+
"type": "array",
|
|
4450
|
+
"items": [
|
|
4451
|
+
{
|
|
4452
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
4453
|
+
},
|
|
4454
|
+
{
|
|
4455
|
+
"$ref": "#/definitions/NoConstantBinaryExpressionConfig"
|
|
4456
|
+
}
|
|
4457
|
+
],
|
|
4458
|
+
"maxItems": 2,
|
|
4459
|
+
"minItems": 2
|
|
4460
|
+
}
|
|
4461
|
+
]
|
|
4445
4462
|
},
|
|
4446
4463
|
"no-constant-condition": {
|
|
4447
4464
|
"anyOf": [
|
|
@@ -5084,7 +5101,25 @@
|
|
|
5084
5101
|
"$ref": "#/definitions/DummyRule"
|
|
5085
5102
|
},
|
|
5086
5103
|
"no-restricted-imports": {
|
|
5087
|
-
"
|
|
5104
|
+
"anyOf": [
|
|
5105
|
+
{
|
|
5106
|
+
"$ref": "#/definitions/RuleNoConfig"
|
|
5107
|
+
},
|
|
5108
|
+
{
|
|
5109
|
+
"items": [
|
|
5110
|
+
{
|
|
5111
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
5112
|
+
},
|
|
5113
|
+
{
|
|
5114
|
+
"$ref": "#/definitions/NoRestrictedImportsConfigEnum"
|
|
5115
|
+
}
|
|
5116
|
+
],
|
|
5117
|
+
"additionalItems": {
|
|
5118
|
+
"$ref": "#/definitions/NoRestrictedImportsConfigEnum"
|
|
5119
|
+
},
|
|
5120
|
+
"minItems": 2
|
|
5121
|
+
}
|
|
5122
|
+
]
|
|
5088
5123
|
},
|
|
5089
5124
|
"no-restricted-properties": {
|
|
5090
5125
|
"anyOf": [
|
|
@@ -5306,6 +5341,26 @@
|
|
|
5306
5341
|
"no-unreachable": {
|
|
5307
5342
|
"$ref": "#/definitions/RuleNoConfig"
|
|
5308
5343
|
},
|
|
5344
|
+
"no-unreachable-loop": {
|
|
5345
|
+
"anyOf": [
|
|
5346
|
+
{
|
|
5347
|
+
"$ref": "#/definitions/RuleNoConfig"
|
|
5348
|
+
},
|
|
5349
|
+
{
|
|
5350
|
+
"type": "array",
|
|
5351
|
+
"items": [
|
|
5352
|
+
{
|
|
5353
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
5354
|
+
},
|
|
5355
|
+
{
|
|
5356
|
+
"$ref": "#/definitions/NoUnreachableLoop"
|
|
5357
|
+
}
|
|
5358
|
+
],
|
|
5359
|
+
"maxItems": 2,
|
|
5360
|
+
"minItems": 2
|
|
5361
|
+
}
|
|
5362
|
+
]
|
|
5363
|
+
},
|
|
5309
5364
|
"no-unsafe-finally": {
|
|
5310
5365
|
"$ref": "#/definitions/RuleNoConfig"
|
|
5311
5366
|
},
|
|
@@ -8616,6 +8671,26 @@
|
|
|
8616
8671
|
}
|
|
8617
8672
|
]
|
|
8618
8673
|
},
|
|
8674
|
+
"unicorn/explicit-timer-delay": {
|
|
8675
|
+
"anyOf": [
|
|
8676
|
+
{
|
|
8677
|
+
"$ref": "#/definitions/RuleNoConfig"
|
|
8678
|
+
},
|
|
8679
|
+
{
|
|
8680
|
+
"type": "array",
|
|
8681
|
+
"items": [
|
|
8682
|
+
{
|
|
8683
|
+
"$ref": "#/definitions/AllowWarnDeny"
|
|
8684
|
+
},
|
|
8685
|
+
{
|
|
8686
|
+
"$ref": "#/definitions/ExplicitTimerDelayMode"
|
|
8687
|
+
}
|
|
8688
|
+
],
|
|
8689
|
+
"maxItems": 2,
|
|
8690
|
+
"minItems": 2
|
|
8691
|
+
}
|
|
8692
|
+
]
|
|
8693
|
+
},
|
|
8619
8694
|
"unicorn/filename-case": {
|
|
8620
8695
|
"$ref": "#/definitions/DummyRule"
|
|
8621
8696
|
},
|
|
@@ -8749,6 +8824,9 @@
|
|
|
8749
8824
|
"unicorn/no-await-in-promise-methods": {
|
|
8750
8825
|
"$ref": "#/definitions/RuleNoConfig"
|
|
8751
8826
|
},
|
|
8827
|
+
"unicorn/no-confusing-array-with": {
|
|
8828
|
+
"$ref": "#/definitions/RuleNoConfig"
|
|
8829
|
+
},
|
|
8752
8830
|
"unicorn/no-console-spaces": {
|
|
8753
8831
|
"$ref": "#/definitions/RuleNoConfig"
|
|
8754
8832
|
},
|
|
@@ -10680,6 +10758,26 @@
|
|
|
10680
10758
|
},
|
|
10681
10759
|
"additionalProperties": false
|
|
10682
10760
|
},
|
|
10761
|
+
"ExplicitTimerDelayMode": {
|
|
10762
|
+
"oneOf": [
|
|
10763
|
+
{
|
|
10764
|
+
"description": "Require explicit `delay` argument for clarity.",
|
|
10765
|
+
"type": "string",
|
|
10766
|
+
"enum": [
|
|
10767
|
+
"always"
|
|
10768
|
+
],
|
|
10769
|
+
"markdownDescription": "Require explicit `delay` argument for clarity."
|
|
10770
|
+
},
|
|
10771
|
+
{
|
|
10772
|
+
"description": "Disallow explicit `0` delay, prefer implicit default.",
|
|
10773
|
+
"type": "string",
|
|
10774
|
+
"enum": [
|
|
10775
|
+
"never"
|
|
10776
|
+
],
|
|
10777
|
+
"markdownDescription": "Disallow explicit `0` delay, prefer implicit default."
|
|
10778
|
+
}
|
|
10779
|
+
]
|
|
10780
|
+
},
|
|
10683
10781
|
"ExtensionRule": {
|
|
10684
10782
|
"description": "Extension rule configuration; Copy to avoid extra indirection.",
|
|
10685
10783
|
"type": "string",
|
|
@@ -10801,12 +10899,12 @@
|
|
|
10801
10899
|
"type": "object",
|
|
10802
10900
|
"properties": {
|
|
10803
10901
|
"forbid": {
|
|
10804
|
-
"description": "An array of prop names or objects that are forbidden on DOM elements.\n\nEach array element can be a string with the property name, or an object\nwith `propName`,
|
|
10902
|
+
"description": "An array of prop names or objects that are forbidden on DOM elements.\n\nEach array element can be a string with the property name, or an object\nwith `propName`, optional `disallowedFor` and `disallowedValues` arrays,\nand an optional custom `message`.\n\nExamples:\n\n- `[\"error\", { \"forbid\": [\"id\", \"style\"] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"className\", \"message\": \"Use class instead\" }] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"style\", \"disallowedFor\": [\"div\", \"span\"] }] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"type\", \"disallowedValues\": [\"button\"] }] }]`",
|
|
10805
10903
|
"type": "array",
|
|
10806
10904
|
"items": {
|
|
10807
10905
|
"$ref": "#/definitions/ForbidDomPropsItem"
|
|
10808
10906
|
},
|
|
10809
|
-
"markdownDescription": "An array of prop names or objects that are forbidden on DOM elements.\n\nEach array element can be a string with the property name, or an object\nwith `propName`,
|
|
10907
|
+
"markdownDescription": "An array of prop names or objects that are forbidden on DOM elements.\n\nEach array element can be a string with the property name, or an object\nwith `propName`, optional `disallowedFor` and `disallowedValues` arrays,\nand an optional custom `message`.\n\nExamples:\n\n- `[\"error\", { \"forbid\": [\"id\", \"style\"] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"className\", \"message\": \"Use class instead\" }] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"style\", \"disallowedFor\": [\"div\", \"span\"] }] }]`\n- `[\"error\", { \"forbid\": [{ \"propName\": \"type\", \"disallowedValues\": [\"button\"] }] }]`"
|
|
10810
10908
|
}
|
|
10811
10909
|
},
|
|
10812
10910
|
"additionalProperties": false,
|
|
@@ -10821,13 +10919,13 @@
|
|
|
10821
10919
|
"markdownDescription": "A prop name to forbid on all DOM elements."
|
|
10822
10920
|
},
|
|
10823
10921
|
{
|
|
10824
|
-
"description": "A prop with optional `disallowedFor` DOM node list and custom `message`.",
|
|
10922
|
+
"description": "A prop with optional `disallowedFor` DOM node list, optional\n`disallowedValues` value list, and custom `message`.",
|
|
10825
10923
|
"allOf": [
|
|
10826
10924
|
{
|
|
10827
10925
|
"$ref": "#/definitions/PropWithOptions"
|
|
10828
10926
|
}
|
|
10829
10927
|
],
|
|
10830
|
-
"markdownDescription": "A prop with optional `disallowedFor` DOM node list and custom `message`."
|
|
10928
|
+
"markdownDescription": "A prop with optional `disallowedFor` DOM node list, optional\n`disallowedValues` value list, and custom `message`."
|
|
10831
10929
|
}
|
|
10832
10930
|
],
|
|
10833
10931
|
"markdownDescription": "A forbidden prop, either as a plain prop name string or with options."
|
|
@@ -10896,15 +10994,10 @@
|
|
|
10896
10994
|
},
|
|
10897
10995
|
"ForbidItemObject": {
|
|
10898
10996
|
"type": "object",
|
|
10899
|
-
"required": [
|
|
10900
|
-
"allowedFor",
|
|
10901
|
-
"allowedForPatterns",
|
|
10902
|
-
"disallowedFor",
|
|
10903
|
-
"disallowedForPatterns"
|
|
10904
|
-
],
|
|
10905
10997
|
"properties": {
|
|
10906
10998
|
"allowedFor": {
|
|
10907
10999
|
"description": "Component names for which this prop is **allowed** (all others are\nforbidden).",
|
|
11000
|
+
"default": [],
|
|
10908
11001
|
"type": "array",
|
|
10909
11002
|
"items": {
|
|
10910
11003
|
"type": "string"
|
|
@@ -10913,6 +11006,7 @@
|
|
|
10913
11006
|
},
|
|
10914
11007
|
"allowedForPatterns": {
|
|
10915
11008
|
"description": "Glob patterns for component names where the prop is **allowed**.",
|
|
11009
|
+
"default": [],
|
|
10916
11010
|
"type": "array",
|
|
10917
11011
|
"items": {
|
|
10918
11012
|
"type": "string"
|
|
@@ -10921,6 +11015,7 @@
|
|
|
10921
11015
|
},
|
|
10922
11016
|
"disallowedFor": {
|
|
10923
11017
|
"description": "Component names for which this prop is **disallowed** (all others are\nallowed).",
|
|
11018
|
+
"default": [],
|
|
10924
11019
|
"type": "array",
|
|
10925
11020
|
"items": {
|
|
10926
11021
|
"type": "string"
|
|
@@ -10929,6 +11024,7 @@
|
|
|
10929
11024
|
},
|
|
10930
11025
|
"disallowedForPatterns": {
|
|
10931
11026
|
"description": "Glob patterns for component names where the prop is **disallowed**.",
|
|
11027
|
+
"default": [],
|
|
10932
11028
|
"type": "array",
|
|
10933
11029
|
"items": {
|
|
10934
11030
|
"type": "string"
|
|
@@ -11151,9 +11247,9 @@
|
|
|
11151
11247
|
"additionalProperties": false
|
|
11152
11248
|
},
|
|
11153
11249
|
"HandleCallbackErrConfig": {
|
|
11154
|
-
"description": "The rule takes a single string option: the name of the error parameter.\n\nThis can be either:\n- an exact name (e.g. `\"err\"`, `\"error\"`)\n- a regexp pattern (e.g. `\"^(err|error)$\"`)\n\nIf the configured name of the error variable begins with a `^` it is considered to be a regexp pattern.\n\nDefault: `\"err\"`.",
|
|
11250
|
+
"description": "The rule takes a single string option: the name of the error parameter.\n\nThis can be either:\n- an exact name (e.g. `\"err\"`, `\"error\"`)\n- a regexp pattern (e.g. `\"^(err|error)$\"`)\n\nIf the configured name of the error variable begins with a `^` it is considered to be a regexp pattern.\nInvalid regexp patterns are rejected during configuration parsing.\n\nDefault: `\"err\"`.",
|
|
11155
11251
|
"type": "string",
|
|
11156
|
-
"markdownDescription": "The rule takes a single string option: the name of the error parameter.\n\nThis can be either:\n- an exact name (e.g. `\"err\"`, `\"error\"`)\n- a regexp pattern (e.g. `\"^(err|error)$\"`)\n\nIf the configured name of the error variable begins with a `^` it is considered to be a regexp pattern.\n\nDefault: `\"err\"`."
|
|
11252
|
+
"markdownDescription": "The rule takes a single string option: the name of the error parameter.\n\nThis can be either:\n- an exact name (e.g. `\"err\"`, `\"error\"`)\n- a regexp pattern (e.g. `\"^(err|error)$\"`)\n\nIf the configured name of the error variable begins with a `^` it is considered to be a regexp pattern.\nInvalid regexp patterns are rejected during configuration parsing.\n\nDefault: `\"err\"`."
|
|
11157
11253
|
},
|
|
11158
11254
|
"HeadingHasContentConfig": {
|
|
11159
11255
|
"type": "object",
|
|
@@ -12357,6 +12453,16 @@
|
|
|
12357
12453
|
},
|
|
12358
12454
|
"additionalProperties": false
|
|
12359
12455
|
},
|
|
12456
|
+
"LoopType": {
|
|
12457
|
+
"type": "string",
|
|
12458
|
+
"enum": [
|
|
12459
|
+
"WhileStatement",
|
|
12460
|
+
"DoWhileStatement",
|
|
12461
|
+
"ForStatement",
|
|
12462
|
+
"ForInStatement",
|
|
12463
|
+
"ForOfStatement"
|
|
12464
|
+
]
|
|
12465
|
+
},
|
|
12360
12466
|
"MaxClassesPerFileConfig": {
|
|
12361
12467
|
"type": "object",
|
|
12362
12468
|
"properties": {
|
|
@@ -13169,6 +13275,12 @@
|
|
|
13169
13275
|
"NoArraySort": {
|
|
13170
13276
|
"type": "object",
|
|
13171
13277
|
"properties": {
|
|
13278
|
+
"allowAfterSpread": {
|
|
13279
|
+
"description": "When set to `true`, allows sorting a fresh array created by a spread, e.g. `[...iterable].sort()`.\nThis avoids the double allocation of `toSorted()` when sorting an iterable such as a `Set`.\n\nExample of **correct** code for this rule with `allowAfterSpread` set to `true`:\n```js\nconst sorted = [...mySet].sort();\n```",
|
|
13280
|
+
"default": false,
|
|
13281
|
+
"type": "boolean",
|
|
13282
|
+
"markdownDescription": "When set to `true`, allows sorting a fresh array created by a spread, e.g. `[...iterable].sort()`.\nThis avoids the double allocation of `toSorted()` when sorting an iterable such as a `Set`.\n\nExample of **correct** code for this rule with `allowAfterSpread` set to `true`:\n```js\nconst sorted = [...mySet].sort();\n```"
|
|
13283
|
+
},
|
|
13172
13284
|
"allowExpressionStatement": {
|
|
13173
13285
|
"description": "When set to `true` (default), allows `array.sort()` as an expression statement.\nSet to `false` to forbid `Array#sort()` even if it's an expression statement.\n\nExample of **incorrect** code for this rule with `allowExpressionStatement` set to `false`:\n```js\narray.sort();\n```",
|
|
13174
13286
|
"default": true,
|
|
@@ -13389,6 +13501,16 @@
|
|
|
13389
13501
|
},
|
|
13390
13502
|
"additionalProperties": false
|
|
13391
13503
|
},
|
|
13504
|
+
"NoConstantBinaryExpressionConfig": {
|
|
13505
|
+
"type": "object",
|
|
13506
|
+
"properties": {
|
|
13507
|
+
"checkRelationalComparisons": {
|
|
13508
|
+
"default": true,
|
|
13509
|
+
"type": "boolean"
|
|
13510
|
+
}
|
|
13511
|
+
},
|
|
13512
|
+
"additionalProperties": false
|
|
13513
|
+
},
|
|
13392
13514
|
"NoConstantCondition": {
|
|
13393
13515
|
"type": "object",
|
|
13394
13516
|
"properties": {
|
|
@@ -14822,6 +14944,42 @@
|
|
|
14822
14944
|
},
|
|
14823
14945
|
"additionalProperties": false
|
|
14824
14946
|
},
|
|
14947
|
+
"NoRestrictedImportsConfig": {
|
|
14948
|
+
"type": "object",
|
|
14949
|
+
"properties": {
|
|
14950
|
+
"paths": {
|
|
14951
|
+
"type": "array",
|
|
14952
|
+
"items": {
|
|
14953
|
+
"$ref": "#/definitions/PossiblePaths"
|
|
14954
|
+
}
|
|
14955
|
+
},
|
|
14956
|
+
"patterns": {
|
|
14957
|
+
"type": "array",
|
|
14958
|
+
"items": {
|
|
14959
|
+
"$ref": "#/definitions/PossiblePatterns"
|
|
14960
|
+
}
|
|
14961
|
+
}
|
|
14962
|
+
},
|
|
14963
|
+
"additionalProperties": false
|
|
14964
|
+
},
|
|
14965
|
+
"NoRestrictedImportsConfigEnum": {
|
|
14966
|
+
"anyOf": [
|
|
14967
|
+
{
|
|
14968
|
+
"type": "string"
|
|
14969
|
+
},
|
|
14970
|
+
{
|
|
14971
|
+
"$ref": "#/definitions/RestrictedPath"
|
|
14972
|
+
},
|
|
14973
|
+
{
|
|
14974
|
+
"$ref": "#/definitions/NoRestrictedImportsConfig"
|
|
14975
|
+
}
|
|
14976
|
+
]
|
|
14977
|
+
},
|
|
14978
|
+
"NoRestrictedImportsConfigValue": {
|
|
14979
|
+
"additionalItems": {
|
|
14980
|
+
"$ref": "#/definitions/NoRestrictedImportsConfigEnum"
|
|
14981
|
+
}
|
|
14982
|
+
},
|
|
14825
14983
|
"NoRestrictedMatchersConfig": {
|
|
14826
14984
|
"type": "object",
|
|
14827
14985
|
"additionalProperties": {
|
|
@@ -15278,6 +15436,21 @@
|
|
|
15278
15436
|
},
|
|
15279
15437
|
"additionalProperties": false
|
|
15280
15438
|
},
|
|
15439
|
+
"NoUnreachableLoop": {
|
|
15440
|
+
"$ref": "#/definitions/NoUnreachableLoopConfig"
|
|
15441
|
+
},
|
|
15442
|
+
"NoUnreachableLoopConfig": {
|
|
15443
|
+
"type": "object",
|
|
15444
|
+
"properties": {
|
|
15445
|
+
"ignore": {
|
|
15446
|
+
"type": "array",
|
|
15447
|
+
"items": {
|
|
15448
|
+
"$ref": "#/definitions/LoopType"
|
|
15449
|
+
}
|
|
15450
|
+
}
|
|
15451
|
+
},
|
|
15452
|
+
"additionalProperties": false
|
|
15453
|
+
},
|
|
15281
15454
|
"NoUnsafeConfig": {
|
|
15282
15455
|
"type": "object",
|
|
15283
15456
|
"properties": {
|
|
@@ -16558,6 +16731,26 @@
|
|
|
16558
16731
|
}
|
|
16559
16732
|
]
|
|
16560
16733
|
},
|
|
16734
|
+
"PossiblePaths": {
|
|
16735
|
+
"anyOf": [
|
|
16736
|
+
{
|
|
16737
|
+
"type": "string"
|
|
16738
|
+
},
|
|
16739
|
+
{
|
|
16740
|
+
"$ref": "#/definitions/RestrictedPath"
|
|
16741
|
+
}
|
|
16742
|
+
]
|
|
16743
|
+
},
|
|
16744
|
+
"PossiblePatterns": {
|
|
16745
|
+
"anyOf": [
|
|
16746
|
+
{
|
|
16747
|
+
"type": "string"
|
|
16748
|
+
},
|
|
16749
|
+
{
|
|
16750
|
+
"$ref": "#/definitions/RestrictedPattern"
|
|
16751
|
+
}
|
|
16752
|
+
]
|
|
16753
|
+
},
|
|
16561
16754
|
"Prefer": {
|
|
16562
16755
|
"oneOf": [
|
|
16563
16756
|
{
|
|
@@ -16750,15 +16943,12 @@
|
|
|
16750
16943
|
"markdownDescription": "An array of function names that should also be treated as test blocks."
|
|
16751
16944
|
},
|
|
16752
16945
|
"assertFunctionNames": {
|
|
16753
|
-
"description": "A list of function names that should be treated as assertion functions
|
|
16754
|
-
"default": [
|
|
16755
|
-
"expect"
|
|
16756
|
-
],
|
|
16946
|
+
"description": "A list of function names that should be treated as assertion functions.\nDefault: `[\"expect\"]`",
|
|
16757
16947
|
"type": "array",
|
|
16758
16948
|
"items": {
|
|
16759
16949
|
"type": "string"
|
|
16760
16950
|
},
|
|
16761
|
-
"markdownDescription": "A list of function names that should be treated as assertion functions
|
|
16951
|
+
"markdownDescription": "A list of function names that should be treated as assertion functions.\nDefault: `[\"expect\"]`"
|
|
16762
16952
|
}
|
|
16763
16953
|
},
|
|
16764
16954
|
"additionalProperties": false
|
|
@@ -17247,7 +17437,7 @@
|
|
|
17247
17437
|
"additionalProperties": false
|
|
17248
17438
|
},
|
|
17249
17439
|
"PropWithOptions": {
|
|
17250
|
-
"description": "A prop with optional `disallowedFor` DOM node list and custom `message`.",
|
|
17440
|
+
"description": "A prop with optional `disallowedFor` DOM node list, optional `disallowedValues`\nvalue list, and custom `message`.",
|
|
17251
17441
|
"type": "object",
|
|
17252
17442
|
"required": [
|
|
17253
17443
|
"propName"
|
|
@@ -17261,6 +17451,14 @@
|
|
|
17261
17451
|
},
|
|
17262
17452
|
"markdownDescription": "A list of DOM element names (e.g. `[\"div\", \"span\"]`) on which this\nprop is forbidden. If empty or omitted, the prop is forbidden on all\nDOM elements."
|
|
17263
17453
|
},
|
|
17454
|
+
"disallowedValues": {
|
|
17455
|
+
"description": "A list of string literal values for which this prop is forbidden. If\nomitted, the prop is forbidden for all values.",
|
|
17456
|
+
"type": "array",
|
|
17457
|
+
"items": {
|
|
17458
|
+
"type": "string"
|
|
17459
|
+
},
|
|
17460
|
+
"markdownDescription": "A list of string literal values for which this prop is forbidden. If\nomitted, the prop is forbidden for all values."
|
|
17461
|
+
},
|
|
17264
17462
|
"message": {
|
|
17265
17463
|
"description": "A custom message to display when this prop is used.",
|
|
17266
17464
|
"type": "string",
|
|
@@ -17273,7 +17471,7 @@
|
|
|
17273
17471
|
}
|
|
17274
17472
|
},
|
|
17275
17473
|
"additionalProperties": false,
|
|
17276
|
-
"markdownDescription": "A prop with optional `disallowedFor` DOM node list and custom `message`."
|
|
17474
|
+
"markdownDescription": "A prop with optional `disallowedFor` DOM node list, optional `disallowedValues`\nvalue list, and custom `message`."
|
|
17277
17475
|
},
|
|
17278
17476
|
"PropertyDetails": {
|
|
17279
17477
|
"type": "object",
|
|
@@ -17805,6 +18003,78 @@
|
|
|
17805
18003
|
},
|
|
17806
18004
|
"additionalProperties": false
|
|
17807
18005
|
},
|
|
18006
|
+
"RestrictedPath": {
|
|
18007
|
+
"type": "object",
|
|
18008
|
+
"required": [
|
|
18009
|
+
"name"
|
|
18010
|
+
],
|
|
18011
|
+
"properties": {
|
|
18012
|
+
"allowImportNames": {
|
|
18013
|
+
"type": "array",
|
|
18014
|
+
"items": {
|
|
18015
|
+
"type": "string"
|
|
18016
|
+
}
|
|
18017
|
+
},
|
|
18018
|
+
"allowTypeImports": {
|
|
18019
|
+
"type": "boolean"
|
|
18020
|
+
},
|
|
18021
|
+
"importNames": {
|
|
18022
|
+
"type": "array",
|
|
18023
|
+
"items": {
|
|
18024
|
+
"type": "string"
|
|
18025
|
+
}
|
|
18026
|
+
},
|
|
18027
|
+
"message": {
|
|
18028
|
+
"type": "string"
|
|
18029
|
+
},
|
|
18030
|
+
"name": {
|
|
18031
|
+
"type": "string"
|
|
18032
|
+
}
|
|
18033
|
+
},
|
|
18034
|
+
"additionalProperties": false
|
|
18035
|
+
},
|
|
18036
|
+
"RestrictedPattern": {
|
|
18037
|
+
"type": "object",
|
|
18038
|
+
"properties": {
|
|
18039
|
+
"allowImportNamePattern": {
|
|
18040
|
+
"type": "string"
|
|
18041
|
+
},
|
|
18042
|
+
"allowImportNames": {
|
|
18043
|
+
"type": "array",
|
|
18044
|
+
"items": {
|
|
18045
|
+
"type": "string"
|
|
18046
|
+
}
|
|
18047
|
+
},
|
|
18048
|
+
"allowTypeImports": {
|
|
18049
|
+
"type": "boolean"
|
|
18050
|
+
},
|
|
18051
|
+
"caseSensitive": {
|
|
18052
|
+
"type": "boolean"
|
|
18053
|
+
},
|
|
18054
|
+
"group": {
|
|
18055
|
+
"type": "array",
|
|
18056
|
+
"items": {
|
|
18057
|
+
"type": "string"
|
|
18058
|
+
}
|
|
18059
|
+
},
|
|
18060
|
+
"importNamePattern": {
|
|
18061
|
+
"type": "string"
|
|
18062
|
+
},
|
|
18063
|
+
"importNames": {
|
|
18064
|
+
"type": "array",
|
|
18065
|
+
"items": {
|
|
18066
|
+
"type": "string"
|
|
18067
|
+
}
|
|
18068
|
+
},
|
|
18069
|
+
"message": {
|
|
18070
|
+
"type": "string"
|
|
18071
|
+
},
|
|
18072
|
+
"regex": {
|
|
18073
|
+
"type": "string"
|
|
18074
|
+
}
|
|
18075
|
+
},
|
|
18076
|
+
"additionalProperties": false
|
|
18077
|
+
},
|
|
17808
18078
|
"ReturnAwaitOption": {
|
|
17809
18079
|
"oneOf": [
|
|
17810
18080
|
{
|
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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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.73.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
|
@@ -115,11 +115,15 @@ type AllowKind = "functions" | "arrowFunctions" | "generatorFunctions" | "method
|
|
|
115
115
|
type NoInnerDeclarationsConfig = "functions" | "both";
|
|
116
116
|
type BlockScopedFunctions = "allow" | "disallow";
|
|
117
117
|
type NoMagicNumbersNumber = number | string;
|
|
118
|
+
type NoRestrictedImportsConfigEnum = string | RestrictedPath | NoRestrictedImportsConfig;
|
|
119
|
+
type PossiblePaths = string | RestrictedPath;
|
|
120
|
+
type PossiblePatterns = string | RestrictedPattern;
|
|
118
121
|
type NoReturnAssignMode = "always" | "except-parens";
|
|
119
122
|
/**
|
|
120
123
|
* Controls how hoisting is handled when checking for shadowing.
|
|
121
124
|
*/
|
|
122
125
|
type HoistOption = "all" | "functions" | "functions-and-types" | "never" | "types";
|
|
126
|
+
type LoopType = "WhileStatement" | "DoWhileStatement" | "ForStatement" | "ForInStatement" | "ForOfStatement";
|
|
123
127
|
type NoUnusedVarsConfig = VarsOption | NoUnusedVarsOptions;
|
|
124
128
|
type VarsOption = "all" | "local";
|
|
125
129
|
type ArgsOption = "after-used" | "all" | "none";
|
|
@@ -141,6 +145,7 @@ type CallbackReturn = string[];
|
|
|
141
145
|
* - a regexp pattern (e.g. `"^(err|error)$"`)
|
|
142
146
|
*
|
|
143
147
|
* If the configured name of the error variable begins with a `^` it is considered to be a regexp pattern.
|
|
148
|
+
* Invalid regexp patterns are rejected during configuration parsing.
|
|
144
149
|
*
|
|
145
150
|
* Default: `"err"`.
|
|
146
151
|
*/
|
|
@@ -291,6 +296,7 @@ type PathOption = "always" | "never";
|
|
|
291
296
|
type TypesOption = "always" | "never" | "prefer-import";
|
|
292
297
|
type BomOptionType = "always" | "never";
|
|
293
298
|
type NonZero = "greater-than" | "not-equal";
|
|
299
|
+
type ExplicitTimerDelayMode = "always" | "never";
|
|
294
300
|
type ModuleStylesOverride = (false | {
|
|
295
301
|
/**
|
|
296
302
|
* Whether default imports or whole-module `require()` assignments are allowed for this module.
|
|
@@ -1011,7 +1017,7 @@ interface DummyRuleMap {
|
|
|
1011
1017
|
"no-cond-assign"?: RuleNoConfig | [AllowWarnDeny, NoCondAssignConfig];
|
|
1012
1018
|
"no-console"?: RuleNoConfig | [AllowWarnDeny, NoConsoleConfig];
|
|
1013
1019
|
"no-const-assign"?: RuleNoConfig;
|
|
1014
|
-
"no-constant-binary-expression"?: RuleNoConfig;
|
|
1020
|
+
"no-constant-binary-expression"?: RuleNoConfig | [AllowWarnDeny, NoConstantBinaryExpressionConfig];
|
|
1015
1021
|
"no-constant-condition"?: RuleNoConfig | [AllowWarnDeny, NoConstantCondition];
|
|
1016
1022
|
"no-constructor-return"?: RuleNoConfig;
|
|
1017
1023
|
"no-continue"?: RuleNoConfig;
|
|
@@ -1077,7 +1083,7 @@ interface DummyRuleMap {
|
|
|
1077
1083
|
"no-regex-spaces"?: RuleNoConfig;
|
|
1078
1084
|
"no-restricted-exports"?: RuleNoConfig | [AllowWarnDeny, NoRestrictedExportsConfig];
|
|
1079
1085
|
"no-restricted-globals"?: DummyRule;
|
|
1080
|
-
"no-restricted-imports"?:
|
|
1086
|
+
"no-restricted-imports"?: RuleNoConfig | [AllowWarnDeny, NoRestrictedImportsConfigEnum, ...NoRestrictedImportsConfigEnum[]];
|
|
1081
1087
|
"no-restricted-properties"?: RuleNoConfig | [AllowWarnDeny, PropertyDetails, ...PropertyDetails[]];
|
|
1082
1088
|
"no-return-assign"?: RuleNoConfig | [AllowWarnDeny, NoReturnAssignMode];
|
|
1083
1089
|
"no-script-url"?: RuleNoConfig;
|
|
@@ -1100,6 +1106,7 @@ interface DummyRuleMap {
|
|
|
1100
1106
|
"no-unmodified-loop-condition"?: RuleNoConfig;
|
|
1101
1107
|
"no-unneeded-ternary"?: RuleNoConfig | [AllowWarnDeny, NoUnneededTernary];
|
|
1102
1108
|
"no-unreachable"?: RuleNoConfig;
|
|
1109
|
+
"no-unreachable-loop"?: RuleNoConfig | [AllowWarnDeny, NoUnreachableLoopConfig];
|
|
1103
1110
|
"no-unsafe-finally"?: RuleNoConfig;
|
|
1104
1111
|
"no-unsafe-negation"?: RuleNoConfig | [AllowWarnDeny, NoUnsafeNegation];
|
|
1105
1112
|
"no-unsafe-optional-chaining"?: RuleNoConfig | [AllowWarnDeny, NoUnsafeOptionalChaining];
|
|
@@ -1387,6 +1394,7 @@ interface DummyRuleMap {
|
|
|
1387
1394
|
"unicorn/error-message"?: RuleNoConfig;
|
|
1388
1395
|
"unicorn/escape-case"?: RuleNoConfig;
|
|
1389
1396
|
"unicorn/explicit-length-check"?: RuleNoConfig | [AllowWarnDeny, ExplicitLengthCheck];
|
|
1397
|
+
"unicorn/explicit-timer-delay"?: RuleNoConfig | [AllowWarnDeny, ExplicitTimerDelayMode];
|
|
1390
1398
|
"unicorn/filename-case"?: DummyRule;
|
|
1391
1399
|
"unicorn/import-style"?: RuleNoConfig | [AllowWarnDeny, ImportStyleConfig];
|
|
1392
1400
|
"unicorn/max-nested-calls"?: RuleNoConfig | [AllowWarnDeny, MaxNestedCalls];
|
|
@@ -1403,6 +1411,7 @@ interface DummyRuleMap {
|
|
|
1403
1411
|
"unicorn/no-array-sort"?: RuleNoConfig | [AllowWarnDeny, NoArraySort];
|
|
1404
1412
|
"unicorn/no-await-expression-member"?: RuleNoConfig;
|
|
1405
1413
|
"unicorn/no-await-in-promise-methods"?: RuleNoConfig;
|
|
1414
|
+
"unicorn/no-confusing-array-with"?: RuleNoConfig;
|
|
1406
1415
|
"unicorn/no-console-spaces"?: RuleNoConfig;
|
|
1407
1416
|
"unicorn/no-document-cookie"?: RuleNoConfig;
|
|
1408
1417
|
"unicorn/no-empty-file"?: RuleNoConfig;
|
|
@@ -2264,6 +2273,7 @@ interface PreferEndingWithAnExpectConfig {
|
|
|
2264
2273
|
additionalTestBlockFunctions?: string[];
|
|
2265
2274
|
/**
|
|
2266
2275
|
* A list of function names that should be treated as assertion functions.
|
|
2276
|
+
* Default: `["expect"]`
|
|
2267
2277
|
*/
|
|
2268
2278
|
assertFunctionNames?: string[];
|
|
2269
2279
|
}
|
|
@@ -2788,6 +2798,9 @@ interface NoConsoleConfig {
|
|
|
2788
2798
|
*/
|
|
2789
2799
|
allow?: string[];
|
|
2790
2800
|
}
|
|
2801
|
+
interface NoConstantBinaryExpressionConfig {
|
|
2802
|
+
checkRelationalComparisons?: boolean;
|
|
2803
|
+
}
|
|
2791
2804
|
interface NoConstantCondition {
|
|
2792
2805
|
/**
|
|
2793
2806
|
* Configuration option to specify whether to check for constant conditions in loops.
|
|
@@ -3304,6 +3317,28 @@ interface RestrictDefaultExports {
|
|
|
3304
3317
|
*/
|
|
3305
3318
|
namespaceFrom?: boolean;
|
|
3306
3319
|
}
|
|
3320
|
+
interface RestrictedPath {
|
|
3321
|
+
allowImportNames?: string[];
|
|
3322
|
+
allowTypeImports?: boolean;
|
|
3323
|
+
importNames?: string[];
|
|
3324
|
+
message?: string;
|
|
3325
|
+
name: string;
|
|
3326
|
+
}
|
|
3327
|
+
interface NoRestrictedImportsConfig {
|
|
3328
|
+
paths?: PossiblePaths[];
|
|
3329
|
+
patterns?: PossiblePatterns[];
|
|
3330
|
+
}
|
|
3331
|
+
interface RestrictedPattern {
|
|
3332
|
+
allowImportNamePattern?: string;
|
|
3333
|
+
allowImportNames?: string[];
|
|
3334
|
+
allowTypeImports?: boolean;
|
|
3335
|
+
caseSensitive?: boolean;
|
|
3336
|
+
group?: string[];
|
|
3337
|
+
importNamePattern?: string;
|
|
3338
|
+
importNames?: string[];
|
|
3339
|
+
message?: string;
|
|
3340
|
+
regex?: string;
|
|
3341
|
+
}
|
|
3307
3342
|
interface PropertyDetails {
|
|
3308
3343
|
/**
|
|
3309
3344
|
* Objects where property access should be allowed. This must be used with `property` and
|
|
@@ -3442,6 +3477,9 @@ interface NoUnneededTernary {
|
|
|
3442
3477
|
*/
|
|
3443
3478
|
defaultAssignment?: boolean;
|
|
3444
3479
|
}
|
|
3480
|
+
interface NoUnreachableLoopConfig {
|
|
3481
|
+
ignore?: LoopType[];
|
|
3482
|
+
}
|
|
3445
3483
|
interface NoUnsafeNegation {
|
|
3446
3484
|
/**
|
|
3447
3485
|
* The `enforceForOrderingRelations` option determines whether negation is allowed
|
|
@@ -4226,20 +4264,20 @@ interface ForbidItemObject {
|
|
|
4226
4264
|
* Component names for which this prop is **allowed** (all others are
|
|
4227
4265
|
* forbidden).
|
|
4228
4266
|
*/
|
|
4229
|
-
allowedFor
|
|
4267
|
+
allowedFor?: string[];
|
|
4230
4268
|
/**
|
|
4231
4269
|
* Glob patterns for component names where the prop is **allowed**.
|
|
4232
4270
|
*/
|
|
4233
|
-
allowedForPatterns
|
|
4271
|
+
allowedForPatterns?: string[];
|
|
4234
4272
|
/**
|
|
4235
4273
|
* Component names for which this prop is **disallowed** (all others are
|
|
4236
4274
|
* allowed).
|
|
4237
4275
|
*/
|
|
4238
|
-
disallowedFor
|
|
4276
|
+
disallowedFor?: string[];
|
|
4239
4277
|
/**
|
|
4240
4278
|
* Glob patterns for component names where the prop is **disallowed**.
|
|
4241
4279
|
*/
|
|
4242
|
-
disallowedForPatterns
|
|
4280
|
+
disallowedForPatterns?: string[];
|
|
4243
4281
|
/**
|
|
4244
4282
|
* Custom message to display.
|
|
4245
4283
|
*/
|
|
@@ -4261,7 +4299,7 @@ interface ForbidDomPropsConfig {
|
|
|
4261
4299
|
* An array of prop names or objects that are forbidden on DOM elements.
|
|
4262
4300
|
*
|
|
4263
4301
|
* Each array element can be a string with the property name, or an object
|
|
4264
|
-
* with `propName`,
|
|
4302
|
+
* with `propName`, optional `disallowedFor` and `disallowedValues` arrays,
|
|
4265
4303
|
* and an optional custom `message`.
|
|
4266
4304
|
*
|
|
4267
4305
|
* Examples:
|
|
@@ -4269,11 +4307,13 @@ interface ForbidDomPropsConfig {
|
|
|
4269
4307
|
* - `["error", { "forbid": ["id", "style"] }]`
|
|
4270
4308
|
* - `["error", { "forbid": [{ "propName": "className", "message": "Use class instead" }] }]`
|
|
4271
4309
|
* - `["error", { "forbid": [{ "propName": "style", "disallowedFor": ["div", "span"] }] }]`
|
|
4310
|
+
* - `["error", { "forbid": [{ "propName": "type", "disallowedValues": ["button"] }] }]`
|
|
4272
4311
|
*/
|
|
4273
4312
|
forbid?: ForbidDomPropsItem[];
|
|
4274
4313
|
}
|
|
4275
4314
|
/**
|
|
4276
|
-
* A prop with optional `disallowedFor` DOM node list
|
|
4315
|
+
* A prop with optional `disallowedFor` DOM node list, optional `disallowedValues`
|
|
4316
|
+
* value list, and custom `message`.
|
|
4277
4317
|
*/
|
|
4278
4318
|
interface PropWithOptions {
|
|
4279
4319
|
/**
|
|
@@ -4282,6 +4322,11 @@ interface PropWithOptions {
|
|
|
4282
4322
|
* DOM elements.
|
|
4283
4323
|
*/
|
|
4284
4324
|
disallowedFor?: string[];
|
|
4325
|
+
/**
|
|
4326
|
+
* A list of string literal values for which this prop is forbidden. If
|
|
4327
|
+
* omitted, the prop is forbidden for all values.
|
|
4328
|
+
*/
|
|
4329
|
+
disallowedValues?: string[];
|
|
4285
4330
|
/**
|
|
4286
4331
|
* A custom message to display when this prop is used.
|
|
4287
4332
|
*/
|
|
@@ -5933,6 +5978,16 @@ interface NoArrayReverse {
|
|
|
5933
5978
|
allowExpressionStatement?: boolean;
|
|
5934
5979
|
}
|
|
5935
5980
|
interface NoArraySort {
|
|
5981
|
+
/**
|
|
5982
|
+
* When set to `true`, allows sorting a fresh array created by a spread, e.g. `[...iterable].sort()`.
|
|
5983
|
+
* This avoids the double allocation of `toSorted()` when sorting an iterable such as a `Set`.
|
|
5984
|
+
*
|
|
5985
|
+
* Example of **correct** code for this rule with `allowAfterSpread` set to `true`:
|
|
5986
|
+
* ```js
|
|
5987
|
+
* const sorted = [...mySet].sort();
|
|
5988
|
+
* ```
|
|
5989
|
+
*/
|
|
5990
|
+
allowAfterSpread?: boolean;
|
|
5936
5991
|
/**
|
|
5937
5992
|
* When set to `true` (default), allows `array.sort()` as an expression statement.
|
|
5938
5993
|
* Set to `false` to forbid `Array#sort()` even if it's an expression statement.
|
package/dist/lint.js
CHANGED
|
@@ -12187,7 +12187,7 @@ const ENVS = /* @__PURE__ */ new Map([
|
|
|
12187
12187
|
writable: []
|
|
12188
12188
|
}],
|
|
12189
12189
|
["browser", {
|
|
12190
|
-
readonly: /* @__PURE__ */ "AI.AICreateMonitor.AITextSession.AbortController.AbortSignal.AbsoluteOrientationSensor.AbstractRange.Accelerometer.AnalyserNode.Animation.AnimationEffect.AnimationEvent.AnimationPlaybackEvent.AnimationTimeline.AsyncDisposableStack.Attr.Audio.AudioBuffer.AudioBufferSourceNode.AudioContext.AudioData.AudioDecoder.AudioDestinationNode.AudioEncoder.AudioListener.AudioNode.AudioParam.AudioParamMap.AudioProcessingEvent.AudioScheduledSourceNode.AudioSinkInfo.AudioWorklet.AudioWorkletNode.AuthenticatorAssertionResponse.AuthenticatorAttestationResponse.AuthenticatorResponse.BackgroundFetchManager.BackgroundFetchRecord.BackgroundFetchRegistration.BarProp.BarcodeDetector.BaseAudioContext.BatteryManager.BeforeUnloadEvent.BiquadFilterNode.Blob.BlobEvent.Bluetooth.BluetoothCharacteristicProperties.BluetoothDevice.BluetoothRemoteGATTCharacteristic.BluetoothRemoteGATTDescriptor.BluetoothRemoteGATTServer.BluetoothRemoteGATTService.BluetoothUUID.BroadcastChannel.BrowserCaptureMediaStreamTrack.ByteLengthQueuingStrategy.CDATASection.CSPViolationReportBody.CSS.CSSAnimation.CSSConditionRule.CSSContainerRule.CSSCounterStyleRule.CSSFontFaceRule.CSSFontFeatureValuesRule.CSSFontPaletteValuesRule.CSSFunctionDeclarations.CSSFunctionDescriptors.CSSFunctionRule.CSSGroupingRule.CSSImageValue.CSSImportRule.CSSKeyframeRule.CSSKeyframesRule.CSSKeywordValue.CSSLayerBlockRule.CSSLayerStatementRule.CSSMarginRule.CSSMathClamp.CSSMathInvert.CSSMathMax.CSSMathMin.CSSMathNegate.CSSMathProduct.CSSMathSum.CSSMathValue.CSSMatrixComponent.CSSMediaRule.CSSNamespaceRule.CSSNestedDeclarations.CSSNumericArray.CSSNumericValue.CSSPageDescriptors.CSSPageRule.CSSPerspective.CSSPositionTryDescriptors.CSSPositionTryRule.CSSPositionValue.CSSPropertyRule.CSSRotate.CSSRule.CSSRuleList.CSSScale.CSSScopeRule.CSSSkew.CSSSkewX.CSSSkewY.CSSStartingStyleRule.CSSStyleDeclaration.CSSStyleProperties.CSSStyleRule.CSSStyleSheet.CSSStyleValue.CSSSupportsRule.CSSTransformComponent.CSSTransformValue.CSSTransition.CSSTranslate.CSSUnitValue.CSSUnparsedValue.CSSVariableReferenceValue.CSSViewTransitionRule.Cache.CacheStorage.CanvasCaptureMediaStream.CanvasCaptureMediaStreamTrack.CanvasGradient.CanvasPattern.CanvasRenderingContext2D.CaptureController.CaretPosition.ChannelMergerNode.ChannelSplitterNode.ChapterInformation.CharacterBoundsUpdateEvent.CharacterData.Clipboard.ClipboardChangeEvent.ClipboardEvent.ClipboardItem.CloseEvent.CloseWatcher.CommandEvent.Comment.CompositionEvent.CompressionStream.ConstantSourceNode.ContentVisibilityAutoStateChangeEvent.ConvolverNode.CookieChangeEvent.CookieDeprecationLabel.CookieStore.CookieStoreManager.CountQueuingStrategy.CrashReportContext.CreateMonitor.Credential.CredentialsContainer.CropTarget.Crypto.CryptoKey.CustomElementRegistry.CustomEvent.CustomStateSet.DOMError.DOMException.DOMImplementation.DOMMatrix.DOMMatrixReadOnly.DOMParser.DOMPoint.DOMPointReadOnly.DOMQuad.DOMRect.DOMRectList.DOMRectReadOnly.DOMStringList.DOMStringMap.DOMTokenList.DataTransfer.DataTransferItem.DataTransferItemList.DecompressionStream.DelayNode.DelegatedInkTrailPresenter.DeviceMotionEvent.DeviceMotionEventAcceleration.DeviceMotionEventRotationRate.DeviceOrientationEvent.DevicePosture.DigitalCredential.DisposableStack.Document.DocumentFragment.DocumentPictureInPicture.DocumentPictureInPictureEvent.DocumentTimeline.DocumentType.DragEvent.DynamicsCompressorNode.EditContext.Element.ElementInternals.EncodedAudioChunk.EncodedVideoChunk.ErrorEvent.Event.EventCounts.EventSource.EventTarget.External.EyeDropper.FeaturePolicy.FederatedCredential.Fence.FencedFrameConfig.FetchLaterResult.File.FileList.FileReader.FileSystem.FileSystemDirectoryEntry.FileSystemDirectoryHandle.FileSystemDirectoryReader.FileSystemEntry.FileSystemFileEntry.FileSystemFileHandle.FileSystemHandle.FileSystemObserver.FileSystemWritableFileStream.FocusEvent.FontData.FontFace.FontFaceSet.FontFaceSetLoadEvent.FormData.FormDataEvent.FragmentDirective.GPU.GPUAdapter.GPUAdapterInfo.GPUBindGroup.GPUBindGroupLayout.GPUBuffer.GPUBufferUsage.GPUCanvasContext.GPUColorWrite.GPUCommandBuffer.GPUCommandEncoder.GPUCompilationInfo.GPUCompilationMessage.GPUComputePassEncoder.GPUComputePipeline.GPUDevice.GPUDeviceLostInfo.GPUError.GPUExternalTexture.GPUInternalError.GPUMapMode.GPUOutOfMemoryError.GPUPipelineError.GPUPipelineLayout.GPUQuerySet.GPUQueue.GPURenderBundle.GPURenderBundleEncoder.GPURenderPassEncoder.GPURenderPipeline.GPUSampler.GPUShaderModule.GPUShaderStage.GPUSupportedFeatures.GPUSupportedLimits.GPUTexture.GPUTextureUsage.GPUTextureView.GPUUncapturedErrorEvent.GPUValidationError.GainNode.Gamepad.GamepadAxisMoveEvent.GamepadButton.GamepadButtonEvent.GamepadEvent.GamepadHapticActuator.GamepadPose.Geolocation.GeolocationCoordinates.GeolocationPosition.GeolocationPositionError.GravitySensor.Gyroscope.HID.HIDConnectionEvent.HIDDevice.HIDInputReportEvent.HTMLAllCollection.HTMLAnchorElement.HTMLAreaElement.HTMLAudioElement.HTMLBRElement.HTMLBaseElement.HTMLBodyElement.HTMLButtonElement.HTMLCanvasElement.HTMLCollection.HTMLDListElement.HTMLDataElement.HTMLDataListElement.HTMLDetailsElement.HTMLDialogElement.HTMLDirectoryElement.HTMLDivElement.HTMLDocument.HTMLElement.HTMLEmbedElement.HTMLFencedFrameElement.HTMLFieldSetElement.HTMLFontElement.HTMLFormControlsCollection.HTMLFormElement.HTMLFrameElement.HTMLFrameSetElement.HTMLGeolocationElement.HTMLHRElement.HTMLHeadElement.HTMLHeadingElement.HTMLHtmlElement.HTMLIFrameElement.HTMLImageElement.HTMLInputElement.HTMLLIElement.HTMLLabelElement.HTMLLegendElement.HTMLLinkElement.HTMLMapElement.HTMLMarqueeElement.HTMLMediaElement.HTMLMenuElement.HTMLMetaElement.HTMLMeterElement.HTMLModElement.HTMLOListElement.HTMLObjectElement.HTMLOptGroupElement.HTMLOptionElement.HTMLOptionsCollection.HTMLOutputElement.HTMLParagraphElement.HTMLParamElement.HTMLPictureElement.HTMLPreElement.HTMLProgressElement.HTMLQuoteElement.HTMLScriptElement.HTMLSelectElement.HTMLSelectedContentElement.HTMLSlotElement.HTMLSourceElement.HTMLSpanElement.HTMLStyleElement.HTMLTableCaptionElement.HTMLTableCellElement.HTMLTableColElement.HTMLTableElement.HTMLTableRowElement.HTMLTableSectionElement.HTMLTemplateElement.HTMLTextAreaElement.HTMLTimeElement.HTMLTitleElement.HTMLTrackElement.HTMLUListElement.HTMLUnknownElement.HTMLVideoElement.HashChangeEvent.Headers.Highlight.HighlightRegistry.History.IDBCursor.IDBCursorWithValue.IDBDatabase.IDBFactory.IDBIndex.IDBKeyRange.IDBObjectStore.IDBOpenDBRequest.IDBRecord.IDBRequest.IDBTransaction.IDBVersionChangeEvent.IIRFilterNode.IdentityCredential.IdentityCredentialError.IdentityProvider.IdleDeadline.IdleDetector.Image.ImageBitmap.ImageBitmapRenderingContext.ImageCapture.ImageData.ImageDecoder.ImageTrack.ImageTrackList.Ink.InputDeviceCapabilities.InputDeviceInfo.InputEvent.IntegrityViolationReportBody.InterestEvent.IntersectionObserver.IntersectionObserverEntry.Keyboard.KeyboardEvent.KeyboardLayoutMap.KeyframeEffect.LanguageDetector.LargestContentfulPaint.LaunchParams.LaunchQueue.LayoutShift.LayoutShiftAttribution.LinearAccelerationSensor.Location.Lock.LockManager.MIDIAccess.MIDIConnectionEvent.MIDIInput.MIDIInputMap.MIDIMessageEvent.MIDIOutput.MIDIOutputMap.MIDIPort.MathMLElement.MediaCapabilities.MediaCapabilitiesInfo.MediaDeviceInfo.MediaDevices.MediaElementAudioSourceNode.MediaEncryptedEvent.MediaError.MediaKeyError.MediaKeyMessageEvent.MediaKeySession.MediaKeyStatusMap.MediaKeySystemAccess.MediaKeys.MediaList.MediaMetadata.MediaQueryList.MediaQueryListEvent.MediaRecorder.MediaRecorderErrorEvent.MediaSession.MediaSource.MediaSourceHandle.MediaStream.MediaStreamAudioDestinationNode.MediaStreamAudioSourceNode.MediaStreamEvent.MediaStreamTrack.MediaStreamTrackAudioSourceNode.MediaStreamTrackAudioStats.MediaStreamTrackEvent.MediaStreamTrackGenerator.MediaStreamTrackProcessor.MediaStreamTrackVideoStats.MessageChannel.MessageEvent.MessagePort.MimeType.MimeTypeArray.ModelGenericSession.ModelManager.MouseEvent.MutationEvent.MutationObserver.MutationRecord.NamedNodeMap.NavigateEvent.Navigation.NavigationActivation.NavigationCurrentEntryChangeEvent.NavigationDestination.NavigationHistoryEntry.NavigationPrecommitController.NavigationPreloadManager.NavigationTransition.Navigator.NavigatorLogin.NavigatorManagedData.NavigatorUAData.NetworkInformation.Node.NodeFilter.NodeIterator.NodeList.NotRestoredReasonDetails.NotRestoredReasons.Notification.NotifyPaintEvent.OTPCredential.Observable.OfflineAudioCompletionEvent.OfflineAudioContext.OffscreenCanvas.OffscreenCanvasRenderingContext2D.Option.OrientationSensor.Origin.OscillatorNode.OverconstrainedError.PERSISTENT.PageRevealEvent.PageSwapEvent.PageTransitionEvent.PannerNode.PasswordCredential.Path2D.PaymentAddress.PaymentManager.PaymentMethodChangeEvent.PaymentRequest.PaymentRequestUpdateEvent.PaymentResponse.Performance.PerformanceElementTiming.PerformanceEntry.PerformanceEventTiming.PerformanceLongAnimationFrameTiming.PerformanceLongTaskTiming.PerformanceMark.PerformanceMeasure.PerformanceNavigation.PerformanceNavigationTiming.PerformanceObserver.PerformanceObserverEntryList.PerformancePaintTiming.PerformanceResourceTiming.PerformanceScriptTiming.PerformanceServerTiming.PerformanceTiming.PerformanceTimingConfidence.PeriodicSyncManager.PeriodicWave.PermissionStatus.Permissions.PictureInPictureEvent.PictureInPictureWindow.Plugin.PluginArray.PointerEvent.PopStateEvent.Presentation.PresentationAvailability.PresentationConnection.PresentationConnectionAvailableEvent.PresentationConnectionCloseEvent.PresentationConnectionList.PresentationReceiver.PresentationRequest.PressureObserver.PressureRecord.ProcessingInstruction.Profiler.ProgressEvent.PromiseRejectionEvent.ProtectedAudience.PublicKeyCredential.PushManager.PushSubscription.PushSubscriptionOptions.QuotaExceededError.RTCCertificate.RTCDTMFSender.RTCDTMFToneChangeEvent.RTCDataChannel.RTCDataChannelEvent.RTCDtlsTransport.RTCEncodedAudioFrame.RTCEncodedVideoFrame.RTCError.RTCErrorEvent.RTCIceCandidate.RTCIceTransport.RTCPeerConnection.RTCPeerConnectionIceErrorEvent.RTCPeerConnectionIceEvent.RTCRtpReceiver.RTCRtpScriptTransform.RTCRtpSender.RTCRtpTransceiver.RTCSctpTransport.RTCSessionDescription.RTCStatsReport.RTCTrackEvent.RadioNodeList.Range.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.RelativeOrientationSensor.RemotePlayback.ReportBody.ReportingObserver.Request.ResizeObserver.ResizeObserverEntry.ResizeObserverSize.Response.RestrictionTarget.SVGAElement.SVGAngle.SVGAnimateElement.SVGAnimateMotionElement.SVGAnimateTransformElement.SVGAnimatedAngle.SVGAnimatedBoolean.SVGAnimatedEnumeration.SVGAnimatedInteger.SVGAnimatedLength.SVGAnimatedLengthList.SVGAnimatedNumber.SVGAnimatedNumberList.SVGAnimatedPreserveAspectRatio.SVGAnimatedRect.SVGAnimatedString.SVGAnimatedTransformList.SVGAnimationElement.SVGCircleElement.SVGClipPathElement.SVGComponentTransferFunctionElement.SVGDefsElement.SVGDescElement.SVGElement.SVGEllipseElement.SVGFEBlendElement.SVGFEColorMatrixElement.SVGFEComponentTransferElement.SVGFECompositeElement.SVGFEConvolveMatrixElement.SVGFEDiffuseLightingElement.SVGFEDisplacementMapElement.SVGFEDistantLightElement.SVGFEDropShadowElement.SVGFEFloodElement.SVGFEFuncAElement.SVGFEFuncBElement.SVGFEFuncGElement.SVGFEFuncRElement.SVGFEGaussianBlurElement.SVGFEImageElement.SVGFEMergeElement.SVGFEMergeNodeElement.SVGFEMorphologyElement.SVGFEOffsetElement.SVGFEPointLightElement.SVGFESpecularLightingElement.SVGFESpotLightElement.SVGFETileElement.SVGFETurbulenceElement.SVGFilterElement.SVGForeignObjectElement.SVGGElement.SVGGeometryElement.SVGGradientElement.SVGGraphicsElement.SVGImageElement.SVGLength.SVGLengthList.SVGLineElement.SVGLinearGradientElement.SVGMPathElement.SVGMarkerElement.SVGMaskElement.SVGMatrix.SVGMetadataElement.SVGNumber.SVGNumberList.SVGPathElement.SVGPatternElement.SVGPoint.SVGPointList.SVGPolygonElement.SVGPolylineElement.SVGPreserveAspectRatio.SVGRadialGradientElement.SVGRect.SVGRectElement.SVGSVGElement.SVGScriptElement.SVGSetElement.SVGStopElement.SVGStringList.SVGStyleElement.SVGSwitchElement.SVGSymbolElement.SVGTSpanElement.SVGTextContentElement.SVGTextElement.SVGTextPathElement.SVGTextPositioningElement.SVGTitleElement.SVGTransform.SVGTransformList.SVGUnitTypes.SVGUseElement.SVGViewElement.Scheduler.Scheduling.Screen.ScreenDetailed.ScreenDetails.ScreenOrientation.ScriptProcessorNode.ScrollTimeline.SecurityPolicyViolationEvent.Selection.Sensor.SensorErrorEvent.Serial.SerialPort.ServiceWorker.ServiceWorkerContainer.ServiceWorkerRegistration.ShadowRoot.SharedStorage.SharedStorageAppendMethod.SharedStorageClearMethod.SharedStorageDeleteMethod.SharedStorageModifierMethod.SharedStorageSetMethod.SharedStorageWorklet.SharedWorker.SnapEvent.SourceBuffer.SourceBufferList.SpeechGrammar.SpeechGrammarList.SpeechRecognition.SpeechRecognitionErrorEvent.SpeechRecognitionEvent.SpeechRecognitionPhrase.SpeechSynthesis.SpeechSynthesisErrorEvent.SpeechSynthesisEvent.SpeechSynthesisUtterance.SpeechSynthesisVoice.StaticRange.StereoPannerNode.Storage.StorageBucket.StorageBucketManager.StorageEvent.StorageManager.StylePropertyMap.StylePropertyMapReadOnly.StyleSheet.StyleSheetList.SubmitEvent.Subscriber.SubtleCrypto.Summarizer.SuppressedError.SyncManager.TEMPORARY.TaskAttributionTiming.TaskController.TaskPriorityChangeEvent.TaskSignal.Temporal.Text.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TextEvent.TextFormat.TextFormatUpdateEvent.TextMetrics.TextTrack.TextTrackCue.TextTrackCueList.TextTrackList.TextUpdateEvent.TimeEvent.TimeRanges.ToggleEvent.Touch.TouchEvent.TouchList.TrackEvent.TransformStream.TransformStreamDefaultController.TransitionEvent.Translator.TreeWalker.TrustedHTML.TrustedScript.TrustedScriptURL.TrustedTypePolicy.TrustedTypePolicyFactory.UIEvent.URL.URLPattern.URLSearchParams.USB.USBAlternateInterface.USBConfiguration.USBConnectionEvent.USBDevice.USBEndpoint.USBInTransferResult.USBInterface.USBIsochronousInTransferPacket.USBIsochronousInTransferResult.USBIsochronousOutTransferPacket.USBIsochronousOutTransferResult.USBOutTransferResult.UserActivation.VTTCue.VTTRegion.ValidityState.VideoColorSpace.VideoDecoder.VideoEncoder.VideoFrame.VideoPlaybackQuality.ViewTimeline.ViewTransition.ViewTransitionTypeSet.Viewport.VirtualKeyboard.VirtualKeyboardGeometryChangeEvent.VisibilityStateEntry.VisualViewport.WGSLLanguageFeatures.WakeLock.WakeLockSentinel.WaveShaperNode.WebAssembly.WebGL2RenderingContext.WebGLActiveInfo.WebGLBuffer.WebGLContextEvent.WebGLFramebuffer.WebGLObject.WebGLProgram.WebGLQuery.WebGLRenderbuffer.WebGLRenderingContext.WebGLSampler.WebGLShader.WebGLShaderPrecisionFormat.WebGLSync.WebGLTexture.WebGLTransformFeedback.WebGLUniformLocation.WebGLVertexArrayObject.WebSocket.WebSocketError.WebSocketStream.WebTransport.WebTransportBidirectionalStream.WebTransportDatagramDuplexStream.WebTransportError.WebTransportReceiveStream.WebTransportSendStream.WheelEvent.Window.WindowControlsOverlay.WindowControlsOverlayGeometryChangeEvent.Worker.Worklet.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.XMLDocument.XMLHttpRequest.XMLHttpRequestEventTarget.XMLHttpRequestUpload.XMLSerializer.XPathEvaluator.XPathExpression.XPathResult.XRAnchor.XRAnchorSet.XRBoundedReferenceSpace.XRCPUDepthInformation.XRCamera.XRDOMOverlayState.XRDepthInformation.XRFrame.XRHand.XRHitTestResult.XRHitTestSource.XRInputSource.XRInputSourceArray.XRInputSourceEvent.XRInputSourcesChangeEvent.XRJointPose.XRJointSpace.XRLayer.XRLightEstimate.XRLightProbe.XRPose.XRRay.XRReferenceSpace.XRReferenceSpaceEvent.XRRenderState.XRRigidTransform.XRSession.XRSessionEvent.XRSpace.XRSystem.XRTransientInputHitTestResult.XRTransientInputHitTestSource.XRView.XRViewerPose.XRViewport.XRVisibilityMaskChangeEvent.XRWebGLBinding.XRWebGLDepthInformation.XRWebGLLayer.XSLTProcessor.addEventListener.ai.alert.atob.blur.btoa.caches.cancelAnimationFrame.cancelIdleCallback.clearInterval.clearTimeout.clientInformation.close.closed.confirm.console.cookieStore.crashReport.createImageBitmap.credentialless.crossOriginIsolated.crypto.customElements.devicePixelRatio.dispatchEvent.document.documentPictureInPicture.event.external.fence.fetch.fetchLater.find.focus.frameElement.frames.getComputedStyle.getScreenDetails.getSelection.history.indexedDB.innerHeight.innerWidth.isSecureContext.launchQueue.length.localStorage.locationbar.matchMedia.menubar.model.moveBy.moveTo.name.navigation.navigator.offscreenBuffering.open.opener.origin.originAgentCluster.outerHeight.outerWidth.pageXOffset.pageYOffset.parent.performance.personalbar.postMessage.print.prompt.queryLocalFonts.queueMicrotask.removeEventListener.reportError.requestAnimationFrame.requestIdleCallback.resizeBy.resizeTo.scheduler.screen.screenLeft.screenTop.screenX.screenY.scroll.scrollBy.scrollTo.scrollX.scrollY.scrollbars.self.sessionStorage.setInterval.setTimeout.sharedStorage.showDirectoryPicker.showOpenFilePicker.showSaveFilePicker.speechSynthesis.status.statusbar.stop.structuredClone.styleMedia.toolbar.top.trustedTypes.viewport.visualViewport.when.window".split("."),
|
|
12190
|
+
readonly: /* @__PURE__ */ "AI.AICreateMonitor.AITextSession.AbortController.AbortSignal.AbsoluteOrientationSensor.AbstractRange.Accelerometer.AnalyserNode.Animation.AnimationEffect.AnimationEvent.AnimationPlaybackEvent.AnimationTimeline.AsyncDisposableStack.Attr.Audio.AudioBuffer.AudioBufferSourceNode.AudioContext.AudioData.AudioDecoder.AudioDestinationNode.AudioEncoder.AudioListener.AudioNode.AudioParam.AudioParamMap.AudioPlaybackStats.AudioProcessingEvent.AudioScheduledSourceNode.AudioSinkInfo.AudioWorklet.AudioWorkletNode.AuthenticatorAssertionResponse.AuthenticatorAttestationResponse.AuthenticatorResponse.BackgroundFetchManager.BackgroundFetchRecord.BackgroundFetchRegistration.BarProp.BarcodeDetector.BaseAudioContext.BatteryManager.BeforeUnloadEvent.BiquadFilterNode.Blob.BlobEvent.Bluetooth.BluetoothCharacteristicProperties.BluetoothDevice.BluetoothRemoteGATTCharacteristic.BluetoothRemoteGATTDescriptor.BluetoothRemoteGATTServer.BluetoothRemoteGATTService.BluetoothUUID.BroadcastChannel.BrowserCaptureMediaStreamTrack.ByteLengthQueuingStrategy.CDATASection.CSPViolationReportBody.CSS.CSSAnimation.CSSConditionRule.CSSContainerRule.CSSCounterStyleRule.CSSFontFaceDescriptors.CSSFontFaceRule.CSSFontFeatureValuesRule.CSSFontPaletteValuesRule.CSSFunctionDeclarations.CSSFunctionDescriptors.CSSFunctionRule.CSSGroupingRule.CSSImageValue.CSSImportRule.CSSKeyframeRule.CSSKeyframesRule.CSSKeywordValue.CSSLayerBlockRule.CSSLayerStatementRule.CSSMarginRule.CSSMathClamp.CSSMathInvert.CSSMathMax.CSSMathMin.CSSMathNegate.CSSMathProduct.CSSMathSum.CSSMathValue.CSSMatrixComponent.CSSMediaRule.CSSNamespaceRule.CSSNestedDeclarations.CSSNumericArray.CSSNumericValue.CSSPageDescriptors.CSSPageRule.CSSPerspective.CSSPositionTryDescriptors.CSSPositionTryRule.CSSPositionValue.CSSPropertyRule.CSSPseudoElement.CSSRotate.CSSRule.CSSRuleList.CSSScale.CSSScopeRule.CSSSkew.CSSSkewX.CSSSkewY.CSSStartingStyleRule.CSSStyleDeclaration.CSSStyleProperties.CSSStyleRule.CSSStyleSheet.CSSStyleValue.CSSSupportsRule.CSSTransformComponent.CSSTransformValue.CSSTransition.CSSTranslate.CSSUnitValue.CSSUnparsedValue.CSSVariableReferenceValue.CSSViewTransitionRule.Cache.CacheStorage.CanvasCaptureMediaStream.CanvasCaptureMediaStreamTrack.CanvasGradient.CanvasPattern.CanvasRenderingContext2D.CaptureController.CaretPosition.ChannelMergerNode.ChannelSplitterNode.ChapterInformation.CharacterBoundsUpdateEvent.CharacterData.Clipboard.ClipboardChangeEvent.ClipboardEvent.ClipboardItem.CloseEvent.CloseWatcher.CommandEvent.Comment.CompositionEvent.CompressionStream.ConstantSourceNode.ContentVisibilityAutoStateChangeEvent.ConvolverNode.CookieChangeEvent.CookieDeprecationLabel.CookieStore.CookieStoreManager.CountQueuingStrategy.CrashReportContext.CreateMonitor.Credential.CredentialsContainer.CropTarget.Crypto.CryptoKey.CustomElementRegistry.CustomEvent.CustomStateSet.DOMError.DOMException.DOMImplementation.DOMMatrix.DOMMatrixReadOnly.DOMParser.DOMPoint.DOMPointReadOnly.DOMQuad.DOMRect.DOMRectList.DOMRectReadOnly.DOMStringList.DOMStringMap.DOMTokenList.DataTransfer.DataTransferItem.DataTransferItemList.DecompressionStream.DelayNode.DelegatedInkTrailPresenter.DeviceMotionEvent.DeviceMotionEventAcceleration.DeviceMotionEventRotationRate.DeviceOrientationEvent.DevicePosture.DigitalCredential.DisposableStack.Document.DocumentFragment.DocumentPictureInPicture.DocumentPictureInPictureEvent.DocumentTimeline.DocumentType.DragEvent.DynamicsCompressorNode.EditContext.Element.ElementInternals.EncodedAudioChunk.EncodedVideoChunk.ErrorEvent.Event.EventCounts.EventSource.EventTarget.External.EyeDropper.FeaturePolicy.FederatedCredential.Fence.FencedFrameConfig.FetchLaterResult.File.FileList.FileReader.FileSystem.FileSystemDirectoryEntry.FileSystemDirectoryHandle.FileSystemDirectoryReader.FileSystemEntry.FileSystemFileEntry.FileSystemFileHandle.FileSystemHandle.FileSystemObserver.FileSystemWritableFileStream.FocusEvent.FontData.FontFace.FontFaceSet.FontFaceSetLoadEvent.FormData.FormDataEvent.FragmentDirective.GPU.GPUAdapter.GPUAdapterInfo.GPUBindGroup.GPUBindGroupLayout.GPUBuffer.GPUBufferUsage.GPUCanvasContext.GPUColorWrite.GPUCommandBuffer.GPUCommandEncoder.GPUCompilationInfo.GPUCompilationMessage.GPUComputePassEncoder.GPUComputePipeline.GPUDevice.GPUDeviceLostInfo.GPUError.GPUExternalTexture.GPUInternalError.GPUMapMode.GPUOutOfMemoryError.GPUPipelineError.GPUPipelineLayout.GPUQuerySet.GPUQueue.GPURenderBundle.GPURenderBundleEncoder.GPURenderPassEncoder.GPURenderPipeline.GPUSampler.GPUShaderModule.GPUShaderStage.GPUSupportedFeatures.GPUSupportedLimits.GPUTexture.GPUTextureUsage.GPUTextureView.GPUUncapturedErrorEvent.GPUValidationError.GainNode.Gamepad.GamepadAxisMoveEvent.GamepadButton.GamepadButtonEvent.GamepadEvent.GamepadHapticActuator.GamepadPose.Geolocation.GeolocationCoordinates.GeolocationPosition.GeolocationPositionError.GravitySensor.Gyroscope.HID.HIDConnectionEvent.HIDDevice.HIDInputReportEvent.HTMLAllCollection.HTMLAnchorElement.HTMLAreaElement.HTMLAudioElement.HTMLBRElement.HTMLBaseElement.HTMLBodyElement.HTMLButtonElement.HTMLCanvasElement.HTMLCollection.HTMLDListElement.HTMLDataElement.HTMLDataListElement.HTMLDetailsElement.HTMLDialogElement.HTMLDirectoryElement.HTMLDivElement.HTMLDocument.HTMLElement.HTMLEmbedElement.HTMLFencedFrameElement.HTMLFieldSetElement.HTMLFontElement.HTMLFormControlsCollection.HTMLFormElement.HTMLFrameElement.HTMLFrameSetElement.HTMLGeolocationElement.HTMLHRElement.HTMLHeadElement.HTMLHeadingElement.HTMLHtmlElement.HTMLIFrameElement.HTMLImageElement.HTMLInputElement.HTMLLIElement.HTMLLabelElement.HTMLLegendElement.HTMLLinkElement.HTMLMapElement.HTMLMarqueeElement.HTMLMediaElement.HTMLMenuElement.HTMLMetaElement.HTMLMeterElement.HTMLModElement.HTMLOListElement.HTMLObjectElement.HTMLOptGroupElement.HTMLOptionElement.HTMLOptionsCollection.HTMLOutputElement.HTMLParagraphElement.HTMLParamElement.HTMLPictureElement.HTMLPreElement.HTMLProgressElement.HTMLQuoteElement.HTMLScriptElement.HTMLSelectElement.HTMLSelectedContentElement.HTMLSlotElement.HTMLSourceElement.HTMLSpanElement.HTMLStyleElement.HTMLTableCaptionElement.HTMLTableCellElement.HTMLTableColElement.HTMLTableElement.HTMLTableRowElement.HTMLTableSectionElement.HTMLTemplateElement.HTMLTextAreaElement.HTMLTimeElement.HTMLTitleElement.HTMLTrackElement.HTMLUListElement.HTMLUnknownElement.HTMLVideoElement.HashChangeEvent.Headers.Highlight.HighlightRegistry.History.IDBCursor.IDBCursorWithValue.IDBDatabase.IDBFactory.IDBIndex.IDBKeyRange.IDBObjectStore.IDBOpenDBRequest.IDBRecord.IDBRequest.IDBTransaction.IDBVersionChangeEvent.IIRFilterNode.IdentityCredential.IdentityCredentialError.IdentityProvider.IdleDeadline.IdleDetector.Image.ImageBitmap.ImageBitmapRenderingContext.ImageCapture.ImageData.ImageDecoder.ImageTrack.ImageTrackList.Ink.InputDeviceCapabilities.InputDeviceInfo.InputEvent.IntegrityViolationReportBody.InterestEvent.IntersectionObserver.IntersectionObserverEntry.Keyboard.KeyboardEvent.KeyboardLayoutMap.KeyframeEffect.LanguageDetector.LanguageModel.LargestContentfulPaint.LaunchParams.LaunchQueue.LayoutShift.LayoutShiftAttribution.LinearAccelerationSensor.Location.Lock.LockManager.MIDIAccess.MIDIConnectionEvent.MIDIInput.MIDIInputMap.MIDIMessageEvent.MIDIOutput.MIDIOutputMap.MIDIPort.MathMLElement.MediaCapabilities.MediaCapabilitiesInfo.MediaDeviceInfo.MediaDevices.MediaElementAudioSourceNode.MediaEncryptedEvent.MediaError.MediaKeyError.MediaKeyMessageEvent.MediaKeySession.MediaKeyStatusMap.MediaKeySystemAccess.MediaKeys.MediaList.MediaMetadata.MediaQueryList.MediaQueryListEvent.MediaRecorder.MediaRecorderErrorEvent.MediaSession.MediaSource.MediaSourceHandle.MediaStream.MediaStreamAudioDestinationNode.MediaStreamAudioSourceNode.MediaStreamEvent.MediaStreamTrack.MediaStreamTrackAudioSourceNode.MediaStreamTrackAudioStats.MediaStreamTrackEvent.MediaStreamTrackGenerator.MediaStreamTrackProcessor.MediaStreamTrackVideoStats.MessageChannel.MessageEvent.MessagePort.MimeType.MimeTypeArray.ModelContext.ModelGenericSession.ModelManager.MouseEvent.MutationEvent.MutationObserver.MutationRecord.NamedNodeMap.NavigateEvent.Navigation.NavigationActivation.NavigationCurrentEntryChangeEvent.NavigationDestination.NavigationHistoryEntry.NavigationPrecommitController.NavigationPreloadManager.NavigationTransition.Navigator.NavigatorLogin.NavigatorManagedData.NavigatorUAData.NetworkInformation.Node.NodeFilter.NodeIterator.NodeList.NotRestoredReasonDetails.NotRestoredReasons.Notification.NotifyPaintEvent.OTPCredential.Observable.OfflineAudioCompletionEvent.OfflineAudioContext.OffscreenCanvas.OffscreenCanvasRenderingContext2D.Option.OrientationSensor.Origin.OscillatorNode.OverconstrainedError.PERSISTENT.PageRevealEvent.PageSwapEvent.PageTransitionEvent.PannerNode.PasswordCredential.Path2D.PaymentAddress.PaymentManager.PaymentMethodChangeEvent.PaymentRequest.PaymentRequestUpdateEvent.PaymentResponse.Performance.PerformanceElementTiming.PerformanceEntry.PerformanceEventTiming.PerformanceLongAnimationFrameTiming.PerformanceLongTaskTiming.PerformanceMark.PerformanceMeasure.PerformanceNavigation.PerformanceNavigationTiming.PerformanceObserver.PerformanceObserverEntryList.PerformancePaintTiming.PerformanceResourceTiming.PerformanceScriptTiming.PerformanceServerTiming.PerformanceTiming.PerformanceTimingConfidence.PeriodicSyncManager.PeriodicWave.PermissionStatus.Permissions.PictureInPictureEvent.PictureInPictureWindow.Plugin.PluginArray.PointerEvent.PopStateEvent.Presentation.PresentationAvailability.PresentationConnection.PresentationConnectionAvailableEvent.PresentationConnectionCloseEvent.PresentationConnectionList.PresentationReceiver.PresentationRequest.PressureObserver.PressureRecord.ProcessingInstruction.Profiler.ProgressEvent.PromiseRejectionEvent.ProtectedAudience.PublicKeyCredential.PushManager.PushSubscription.PushSubscriptionOptions.QuotaExceededError.RTCCertificate.RTCDTMFSender.RTCDTMFToneChangeEvent.RTCDataChannel.RTCDataChannelEvent.RTCDtlsTransport.RTCEncodedAudioFrame.RTCEncodedVideoFrame.RTCError.RTCErrorEvent.RTCIceCandidate.RTCIceTransport.RTCPeerConnection.RTCPeerConnectionIceErrorEvent.RTCPeerConnectionIceEvent.RTCRtpReceiver.RTCRtpScriptTransform.RTCRtpSender.RTCRtpTransceiver.RTCSctpTransport.RTCSessionDescription.RTCStatsReport.RTCTrackEvent.RadioNodeList.Range.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.RelativeOrientationSensor.RemotePlayback.ReportBody.ReportingObserver.Request.ResizeObserver.ResizeObserverEntry.ResizeObserverSize.Response.RestrictionTarget.SVGAElement.SVGAngle.SVGAnimateElement.SVGAnimateMotionElement.SVGAnimateTransformElement.SVGAnimatedAngle.SVGAnimatedBoolean.SVGAnimatedEnumeration.SVGAnimatedInteger.SVGAnimatedLength.SVGAnimatedLengthList.SVGAnimatedNumber.SVGAnimatedNumberList.SVGAnimatedPreserveAspectRatio.SVGAnimatedRect.SVGAnimatedString.SVGAnimatedTransformList.SVGAnimationElement.SVGCircleElement.SVGClipPathElement.SVGComponentTransferFunctionElement.SVGDefsElement.SVGDescElement.SVGElement.SVGEllipseElement.SVGFEBlendElement.SVGFEColorMatrixElement.SVGFEComponentTransferElement.SVGFECompositeElement.SVGFEConvolveMatrixElement.SVGFEDiffuseLightingElement.SVGFEDisplacementMapElement.SVGFEDistantLightElement.SVGFEDropShadowElement.SVGFEFloodElement.SVGFEFuncAElement.SVGFEFuncBElement.SVGFEFuncGElement.SVGFEFuncRElement.SVGFEGaussianBlurElement.SVGFEImageElement.SVGFEMergeElement.SVGFEMergeNodeElement.SVGFEMorphologyElement.SVGFEOffsetElement.SVGFEPointLightElement.SVGFESpecularLightingElement.SVGFESpotLightElement.SVGFETileElement.SVGFETurbulenceElement.SVGFilterElement.SVGForeignObjectElement.SVGGElement.SVGGeometryElement.SVGGradientElement.SVGGraphicsElement.SVGImageElement.SVGLength.SVGLengthList.SVGLineElement.SVGLinearGradientElement.SVGMPathElement.SVGMarkerElement.SVGMaskElement.SVGMatrix.SVGMetadataElement.SVGNumber.SVGNumberList.SVGPathElement.SVGPatternElement.SVGPoint.SVGPointList.SVGPolygonElement.SVGPolylineElement.SVGPreserveAspectRatio.SVGRadialGradientElement.SVGRect.SVGRectElement.SVGSVGElement.SVGScriptElement.SVGSetElement.SVGStopElement.SVGStringList.SVGStyleElement.SVGSwitchElement.SVGSymbolElement.SVGTSpanElement.SVGTextContentElement.SVGTextElement.SVGTextPathElement.SVGTextPositioningElement.SVGTitleElement.SVGTransform.SVGTransformList.SVGUnitTypes.SVGUseElement.SVGViewElement.Sanitizer.Scheduler.Scheduling.Screen.ScreenDetailed.ScreenDetails.ScreenOrientation.ScriptProcessorNode.ScrollTimeline.SecurityPolicyViolationEvent.Selection.Sensor.SensorErrorEvent.Serial.SerialPort.ServiceWorker.ServiceWorkerContainer.ServiceWorkerRegistration.ShadowRoot.SharedStorage.SharedStorageAppendMethod.SharedStorageClearMethod.SharedStorageDeleteMethod.SharedStorageModifierMethod.SharedStorageSetMethod.SharedStorageWorklet.SharedWorker.SnapEvent.SourceBuffer.SourceBufferList.SpeechGrammar.SpeechGrammarList.SpeechRecognition.SpeechRecognitionErrorEvent.SpeechRecognitionEvent.SpeechRecognitionPhrase.SpeechSynthesis.SpeechSynthesisErrorEvent.SpeechSynthesisEvent.SpeechSynthesisUtterance.SpeechSynthesisVoice.StaticRange.StereoPannerNode.Storage.StorageBucket.StorageBucketManager.StorageEvent.StorageManager.StylePropertyMap.StylePropertyMapReadOnly.StyleSheet.StyleSheetList.SubmitEvent.Subscriber.SubtleCrypto.Summarizer.SuppressedError.SyncManager.TEMPORARY.TaskAttributionTiming.TaskController.TaskPriorityChangeEvent.TaskSignal.Temporal.Text.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TextEvent.TextFormat.TextFormatUpdateEvent.TextMetrics.TextTrack.TextTrackCue.TextTrackCueList.TextTrackList.TextUpdateEvent.TimeEvent.TimeRanges.TimelineTrigger.TimelineTriggerRange.TimelineTriggerRangeList.ToggleEvent.Touch.TouchEvent.TouchList.TrackEvent.TransformStream.TransformStreamDefaultController.TransitionEvent.Translator.TreeWalker.TrustedHTML.TrustedScript.TrustedScriptURL.TrustedTypePolicy.TrustedTypePolicyFactory.UIEvent.URL.URLPattern.URLSearchParams.USB.USBAlternateInterface.USBConfiguration.USBConnectionEvent.USBDevice.USBEndpoint.USBInTransferResult.USBInterface.USBIsochronousInTransferPacket.USBIsochronousInTransferResult.USBIsochronousOutTransferPacket.USBIsochronousOutTransferResult.USBOutTransferResult.UserActivation.VTTCue.VTTRegion.ValidityState.VideoColorSpace.VideoDecoder.VideoEncoder.VideoFrame.VideoPlaybackQuality.ViewTimeline.ViewTransition.ViewTransitionTypeSet.Viewport.VirtualKeyboard.VirtualKeyboardGeometryChangeEvent.VisibilityStateEntry.VisualViewport.WGSLLanguageFeatures.WakeLock.WakeLockSentinel.WaveShaperNode.WebAssembly.WebGL2RenderingContext.WebGLActiveInfo.WebGLBuffer.WebGLContextEvent.WebGLFramebuffer.WebGLObject.WebGLProgram.WebGLQuery.WebGLRenderbuffer.WebGLRenderingContext.WebGLSampler.WebGLShader.WebGLShaderPrecisionFormat.WebGLSync.WebGLTexture.WebGLTransformFeedback.WebGLUniformLocation.WebGLVertexArrayObject.WebMCPEvent.WebSocket.WebSocketError.WebSocketStream.WebTransport.WebTransportBidirectionalStream.WebTransportDatagramDuplexStream.WebTransportError.WebTransportReceiveStream.WebTransportSendStream.WheelEvent.Window.WindowControlsOverlay.WindowControlsOverlayGeometryChangeEvent.Worker.Worklet.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.XMLDocument.XMLHttpRequest.XMLHttpRequestEventTarget.XMLHttpRequestUpload.XMLSerializer.XPathEvaluator.XPathExpression.XPathResult.XRAnchor.XRAnchorSet.XRBoundedReferenceSpace.XRCPUDepthInformation.XRCamera.XRCompositionLayer.XRCubeLayer.XRCylinderLayer.XRDOMOverlayState.XRDepthInformation.XREquirectLayer.XRFrame.XRHand.XRHitTestResult.XRHitTestSource.XRInputSource.XRInputSourceArray.XRInputSourceEvent.XRInputSourcesChangeEvent.XRJointPose.XRJointSpace.XRLayer.XRLayerEvent.XRLightEstimate.XRLightProbe.XRPlane.XRPlaneSet.XRPose.XRProjectionLayer.XRQuadLayer.XRRay.XRReferenceSpace.XRReferenceSpaceEvent.XRRenderState.XRRigidTransform.XRSession.XRSessionEvent.XRSpace.XRSubImage.XRSystem.XRTransientInputHitTestResult.XRTransientInputHitTestSource.XRView.XRViewerPose.XRViewport.XRVisibilityMaskChangeEvent.XRWebGLBinding.XRWebGLDepthInformation.XRWebGLLayer.XRWebGLSubImage.XSLTProcessor.addEventListener.ai.alert.atob.blur.btoa.caches.cancelAnimationFrame.cancelIdleCallback.clearInterval.clearTimeout.clientInformation.close.closed.confirm.console.cookieStore.crashReport.createImageBitmap.credentialless.crossOriginIsolated.crypto.customElements.devicePixelRatio.dispatchEvent.document.documentPictureInPicture.event.external.fence.fetch.fetchLater.find.focus.frameElement.frames.getComputedStyle.getScreenDetails.getSelection.history.indexedDB.innerHeight.innerWidth.isSecureContext.launchQueue.length.localStorage.locationbar.matchMedia.menubar.model.moveBy.moveTo.name.navigation.navigator.offscreenBuffering.open.opener.origin.originAgentCluster.outerHeight.outerWidth.pageXOffset.pageYOffset.parent.performance.personalbar.postMessage.print.prompt.queryLocalFonts.queueMicrotask.removeEventListener.reportError.requestAnimationFrame.requestIdleCallback.resizeBy.resizeTo.scheduler.screen.screenLeft.screenTop.screenX.screenY.scroll.scrollBy.scrollTo.scrollX.scrollY.scrollbars.self.sessionStorage.setInterval.setTimeout.sharedStorage.showDirectoryPicker.showOpenFilePicker.showSaveFilePicker.speechSynthesis.status.statusbar.stop.structuredClone.styleMedia.toolbar.top.trustedTypes.viewport.visualViewport.when.window".split("."),
|
|
12191
12191
|
writable: /* @__PURE__ */ "location.onabort.onafterprint.onanimationcancel.onanimationend.onanimationiteration.onanimationstart.onappinstalled.onauxclick.onbeforeinput.onbeforeinstallprompt.onbeforematch.onbeforeprint.onbeforetoggle.onbeforeunload.onbeforexrselect.onblur.oncancel.oncanplay.oncanplaythrough.onchange.onclick.onclose.oncommand.oncontentvisibilityautostatechange.oncontextlost.oncontextmenu.oncontextrestored.oncopy.oncuechange.oncut.ondblclick.ondevicemotion.ondeviceorientation.ondeviceorientationabsolute.ondrag.ondragend.ondragenter.ondragleave.ondragover.ondragstart.ondrop.ondurationchange.onemptied.onended.onerror.onfocus.onformdata.ongamepadconnected.ongamepaddisconnected.ongotpointercapture.onhashchange.oninput.oninvalid.onkeydown.onkeypress.onkeyup.onlanguagechange.onload.onloadeddata.onloadedmetadata.onloadstart.onlostpointercapture.onmessage.onmessageerror.onmousedown.onmouseenter.onmouseleave.onmousemove.onmouseout.onmouseover.onmouseup.onmousewheel.onoffline.ononline.onpagehide.onpagereveal.onpageshow.onpageswap.onpaste.onpause.onplay.onplaying.onpointercancel.onpointerdown.onpointerenter.onpointerleave.onpointermove.onpointerout.onpointerover.onpointerrawupdate.onpointerup.onpopstate.onprogress.onratechange.onrejectionhandled.onreset.onresize.onscroll.onscrollend.onscrollsnapchange.onscrollsnapchanging.onsearch.onsecuritypolicyviolation.onseeked.onseeking.onselect.onselectionchange.onselectstart.onslotchange.onstalled.onstorage.onsubmit.onsuspend.ontimeupdate.ontoggle.ontransitioncancel.ontransitionend.ontransitionrun.ontransitionstart.onunhandledrejection.onunload.onvolumechange.onwaiting.onwheel".split(".")
|
|
12192
12192
|
}],
|
|
12193
12193
|
["builtin", {
|
|
@@ -12517,7 +12517,7 @@ const ENVS = /* @__PURE__ */ new Map([
|
|
|
12517
12517
|
writable: []
|
|
12518
12518
|
}],
|
|
12519
12519
|
["node", {
|
|
12520
|
-
readonly: /* @__PURE__ */ "AbortController.AbortSignal.AsyncDisposableStack.Blob.BroadcastChannel.Buffer.ByteLengthQueuingStrategy.CloseEvent.CompressionStream.CountQueuingStrategy.Crypto.CryptoKey.CustomEvent.DOMException.DecompressionStream.DisposableStack.ErrorEvent.Event.EventTarget.File.FormData.Headers.MessageChannel.MessageEvent.MessagePort.Navigator.Performance.PerformanceEntry.PerformanceMark.PerformanceMeasure.PerformanceObserver.PerformanceObserverEntryList.PerformanceResourceTiming.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.Request.Response.Storage.SubtleCrypto.SuppressedError.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TransformStream.TransformStreamDefaultController.URL.URLPattern.URLSearchParams.WebAssembly.WebSocket.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.__dirname.__filename.atob.btoa.clearImmediate.clearInterval.clearTimeout.console.crypto.fetch.global.localStorage.module.navigator.performance.process.queueMicrotask.require.sessionStorage.setImmediate.setInterval.setTimeout.structuredClone".split("."),
|
|
12520
|
+
readonly: /* @__PURE__ */ "AbortController.AbortSignal.AsyncDisposableStack.Blob.BroadcastChannel.Buffer.ByteLengthQueuingStrategy.CloseEvent.CompressionStream.CountQueuingStrategy.Crypto.CryptoKey.CustomEvent.DOMException.DecompressionStream.DisposableStack.ErrorEvent.Event.EventTarget.File.FormData.Headers.MessageChannel.MessageEvent.MessagePort.Navigator.Performance.PerformanceEntry.PerformanceMark.PerformanceMeasure.PerformanceObserver.PerformanceObserverEntryList.PerformanceResourceTiming.QuotaExceededError.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.Request.Response.Storage.SubtleCrypto.SuppressedError.Temporal.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TransformStream.TransformStreamDefaultController.URL.URLPattern.URLSearchParams.WebAssembly.WebSocket.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.__dirname.__filename.atob.btoa.clearImmediate.clearInterval.clearTimeout.console.crypto.fetch.global.localStorage.module.navigator.performance.process.queueMicrotask.require.sessionStorage.setImmediate.setInterval.setTimeout.structuredClone".split("."),
|
|
12521
12521
|
writable: ["exports"]
|
|
12522
12522
|
}],
|
|
12523
12523
|
["phantomjs", {
|
|
@@ -12602,7 +12602,7 @@ const ENVS = /* @__PURE__ */ new Map([
|
|
|
12602
12602
|
]
|
|
12603
12603
|
}],
|
|
12604
12604
|
["shared-node-browser", {
|
|
12605
|
-
readonly: /* @__PURE__ */ "AbortController.AbortSignal.AsyncDisposableStack.Blob.BroadcastChannel.ByteLengthQueuingStrategy.CloseEvent.CompressionStream.CountQueuingStrategy.Crypto.CryptoKey.CustomEvent.DOMException.DecompressionStream.DisposableStack.ErrorEvent.Event.EventTarget.File.FormData.Headers.MessageChannel.MessageEvent.MessagePort.Navigator.Performance.PerformanceEntry.PerformanceMark.PerformanceMeasure.PerformanceObserver.PerformanceObserverEntryList.PerformanceResourceTiming.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.Request.Response.Storage.SubtleCrypto.SuppressedError.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TransformStream.TransformStreamDefaultController.URL.URLPattern.URLSearchParams.WebAssembly.WebSocket.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.atob.btoa.clearInterval.clearTimeout.console.crypto.fetch.localStorage.navigator.performance.queueMicrotask.sessionStorage.setInterval.setTimeout.structuredClone".split("."),
|
|
12605
|
+
readonly: /* @__PURE__ */ "AbortController.AbortSignal.AsyncDisposableStack.Blob.BroadcastChannel.ByteLengthQueuingStrategy.CloseEvent.CompressionStream.CountQueuingStrategy.Crypto.CryptoKey.CustomEvent.DOMException.DecompressionStream.DisposableStack.ErrorEvent.Event.EventTarget.File.FormData.Headers.MessageChannel.MessageEvent.MessagePort.Navigator.Performance.PerformanceEntry.PerformanceMark.PerformanceMeasure.PerformanceObserver.PerformanceObserverEntryList.PerformanceResourceTiming.QuotaExceededError.ReadableByteStreamController.ReadableStream.ReadableStreamBYOBReader.ReadableStreamBYOBRequest.ReadableStreamDefaultController.ReadableStreamDefaultReader.Request.Response.Storage.SubtleCrypto.SuppressedError.Temporal.TextDecoder.TextDecoderStream.TextEncoder.TextEncoderStream.TransformStream.TransformStreamDefaultController.URL.URLPattern.URLSearchParams.WebAssembly.WebSocket.WritableStream.WritableStreamDefaultController.WritableStreamDefaultWriter.atob.btoa.clearInterval.clearTimeout.console.crypto.fetch.localStorage.navigator.performance.queueMicrotask.sessionStorage.setInterval.setTimeout.structuredClone".split("."),
|
|
12606
12606
|
writable: []
|
|
12607
12607
|
}],
|
|
12608
12608
|
["shelljs", {
|
|
@@ -14109,7 +14109,7 @@ function resetSettings() {
|
|
|
14109
14109
|
}
|
|
14110
14110
|
//#endregion
|
|
14111
14111
|
//#region package.json
|
|
14112
|
-
var version = "1.
|
|
14112
|
+
var version = "1.73.0";
|
|
14113
14113
|
//#endregion
|
|
14114
14114
|
//#region src-js/plugins/context.ts
|
|
14115
14115
|
const ObjectFreeze$1 = Object.freeze, ObjectCreate = Object.create, ObjectAssign = Object.assign, ObjectPreventExtensions = Object.preventExtensions;
|
|
@@ -17243,8 +17243,8 @@ var require_uri_all = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
17243
17243
|
}
|
|
17244
17244
|
}
|
|
17245
17245
|
function noop() {}
|
|
17246
|
-
})))(), 1),
|
|
17247
|
-
id,
|
|
17246
|
+
})))(), 1), json_schema_draft_04_default = {
|
|
17247
|
+
id: "http://json-schema.org/draft-04/schema#",
|
|
17248
17248
|
$schema: "http://json-schema.org/draft-04/schema#",
|
|
17249
17249
|
description: "Core schema meta-schema",
|
|
17250
17250
|
definitions: {
|
|
@@ -17391,7 +17391,7 @@ const AJV = new import_ajv.default({
|
|
|
17391
17391
|
verbose: !0,
|
|
17392
17392
|
schemaId: "auto"
|
|
17393
17393
|
});
|
|
17394
|
-
AJV.addMetaSchema(json_schema_draft_04_default), AJV._opts.defaultMeta = id;
|
|
17394
|
+
AJV.addMetaSchema(json_schema_draft_04_default), AJV._opts.defaultMeta = json_schema_draft_04_default.id;
|
|
17395
17395
|
/**
|
|
17396
17396
|
* Compile a rule's schema into a validator function.
|
|
17397
17397
|
*
|
|
@@ -17557,8 +17557,8 @@ const neverRunBeforeHook = () => !1;
|
|
|
17557
17557
|
*/
|
|
17558
17558
|
async function loadPlugin(url, pluginName, pluginNameIsAlias, workspaceUri) {
|
|
17559
17559
|
try {
|
|
17560
|
-
let plugin = (await import(url)).default;
|
|
17561
|
-
return JSONStringify$1({ Success:
|
|
17560
|
+
let plugin = (await import(url)).default, res = registerPlugin(plugin, pluginName, pluginNameIsAlias, workspaceUri);
|
|
17561
|
+
return JSONStringify$1({ Success: res });
|
|
17562
17562
|
} catch (err) {
|
|
17563
17563
|
return JSONStringify$1({ Failure: getErrorMessage(err) });
|
|
17564
17564
|
}
|
|
@@ -17732,7 +17732,7 @@ function conformHookFn(hookFn, hookName) {
|
|
|
17732
17732
|
return hookFn;
|
|
17733
17733
|
}
|
|
17734
17734
|
//#endregion
|
|
17735
|
-
//#region ../../node_modules/.pnpm/eslint@10.
|
|
17735
|
+
//#region ../../node_modules/.pnpm/eslint@10.5.0/node_modules/eslint/lib/shared/assert.js
|
|
17736
17736
|
/**
|
|
17737
17737
|
* @fileoverview Assertion utilities equivalent to the Node.js node:asserts module.
|
|
17738
17738
|
* @author Josh Goldberg
|
package/dist/plugins-dev.d.ts
CHANGED
|
@@ -1367,7 +1367,7 @@ interface BindingIdentifier extends Span {
|
|
|
1367
1367
|
decorators?: [];
|
|
1368
1368
|
name: string;
|
|
1369
1369
|
optional?: false;
|
|
1370
|
-
typeAnnotation?: null;
|
|
1370
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
1371
1371
|
parent: Node;
|
|
1372
1372
|
}
|
|
1373
1373
|
interface LabelIdentifier extends Span {
|
|
@@ -1780,7 +1780,7 @@ interface ObjectPattern extends Span {
|
|
|
1780
1780
|
decorators?: [];
|
|
1781
1781
|
properties: Array<BindingProperty | BindingRestElement>;
|
|
1782
1782
|
optional?: false;
|
|
1783
|
-
typeAnnotation?: null;
|
|
1783
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
1784
1784
|
parent: Node;
|
|
1785
1785
|
}
|
|
1786
1786
|
interface BindingProperty extends Span {
|
|
@@ -1799,7 +1799,7 @@ interface ArrayPattern extends Span {
|
|
|
1799
1799
|
decorators?: [];
|
|
1800
1800
|
elements: Array<BindingPattern | BindingRestElement | null>;
|
|
1801
1801
|
optional?: false;
|
|
1802
|
-
typeAnnotation?: null;
|
|
1802
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
1803
1803
|
parent: Node;
|
|
1804
1804
|
}
|
|
1805
1805
|
interface BindingRestElement extends Span {
|
|
@@ -1807,7 +1807,7 @@ interface BindingRestElement extends Span {
|
|
|
1807
1807
|
decorators?: [];
|
|
1808
1808
|
argument: BindingPattern;
|
|
1809
1809
|
optional?: false;
|
|
1810
|
-
typeAnnotation?: null;
|
|
1810
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
1811
1811
|
value?: null;
|
|
1812
1812
|
parent: Node;
|
|
1813
1813
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxlint",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.0",
|
|
4
4
|
"description": "Linter for the JavaScript Oxidation Compiler",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"./package.json": "./package.json"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"oxlint-tsgolint": ">=0.
|
|
49
|
+
"oxlint-tsgolint": ">=0.24.0",
|
|
50
50
|
"vite-plus": "*"
|
|
51
51
|
},
|
|
52
52
|
"peerDependenciesMeta": {
|
|
@@ -87,24 +87,24 @@
|
|
|
87
87
|
},
|
|
88
88
|
"preferUnplugged": true,
|
|
89
89
|
"optionalDependencies": {
|
|
90
|
-
"@oxlint/binding-darwin-arm64": "1.
|
|
91
|
-
"@oxlint/binding-android-arm64": "1.
|
|
92
|
-
"@oxlint/binding-win32-arm64-msvc": "1.
|
|
93
|
-
"@oxlint/binding-linux-arm64-gnu": "1.
|
|
94
|
-
"@oxlint/binding-linux-arm64-musl": "1.
|
|
95
|
-
"@oxlint/binding-openharmony-arm64": "1.
|
|
96
|
-
"@oxlint/binding-android-arm-eabi": "1.
|
|
97
|
-
"@oxlint/binding-linux-arm-gnueabihf": "1.
|
|
98
|
-
"@oxlint/binding-linux-arm-musleabihf": "1.
|
|
99
|
-
"@oxlint/binding-win32-ia32-msvc": "1.
|
|
100
|
-
"@oxlint/binding-linux-ppc64-gnu": "1.
|
|
101
|
-
"@oxlint/binding-linux-riscv64-gnu": "1.
|
|
102
|
-
"@oxlint/binding-linux-riscv64-musl": "1.
|
|
103
|
-
"@oxlint/binding-linux-s390x-gnu": "1.
|
|
104
|
-
"@oxlint/binding-darwin-x64": "1.
|
|
105
|
-
"@oxlint/binding-win32-x64-msvc": "1.
|
|
106
|
-
"@oxlint/binding-freebsd-x64": "1.
|
|
107
|
-
"@oxlint/binding-linux-x64-gnu": "1.
|
|
108
|
-
"@oxlint/binding-linux-x64-musl": "1.
|
|
90
|
+
"@oxlint/binding-darwin-arm64": "1.73.0",
|
|
91
|
+
"@oxlint/binding-android-arm64": "1.73.0",
|
|
92
|
+
"@oxlint/binding-win32-arm64-msvc": "1.73.0",
|
|
93
|
+
"@oxlint/binding-linux-arm64-gnu": "1.73.0",
|
|
94
|
+
"@oxlint/binding-linux-arm64-musl": "1.73.0",
|
|
95
|
+
"@oxlint/binding-openharmony-arm64": "1.73.0",
|
|
96
|
+
"@oxlint/binding-android-arm-eabi": "1.73.0",
|
|
97
|
+
"@oxlint/binding-linux-arm-gnueabihf": "1.73.0",
|
|
98
|
+
"@oxlint/binding-linux-arm-musleabihf": "1.73.0",
|
|
99
|
+
"@oxlint/binding-win32-ia32-msvc": "1.73.0",
|
|
100
|
+
"@oxlint/binding-linux-ppc64-gnu": "1.73.0",
|
|
101
|
+
"@oxlint/binding-linux-riscv64-gnu": "1.73.0",
|
|
102
|
+
"@oxlint/binding-linux-riscv64-musl": "1.73.0",
|
|
103
|
+
"@oxlint/binding-linux-s390x-gnu": "1.73.0",
|
|
104
|
+
"@oxlint/binding-darwin-x64": "1.73.0",
|
|
105
|
+
"@oxlint/binding-win32-x64-msvc": "1.73.0",
|
|
106
|
+
"@oxlint/binding-freebsd-x64": "1.73.0",
|
|
107
|
+
"@oxlint/binding-linux-x64-gnu": "1.73.0",
|
|
108
|
+
"@oxlint/binding-linux-x64-musl": "1.73.0"
|
|
109
109
|
}
|
|
110
110
|
}
|