@biomejs/wasm-nodejs 2.3.6 → 2.3.8

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/biome_wasm.d.ts CHANGED
@@ -1717,11 +1717,21 @@ See https://biomejs.dev/linter/rules/no-duplicate-dependencies
1717
1717
  */
1718
1718
  noDuplicateDependencies?: NoDuplicateDependenciesConfiguration;
1719
1719
  /**
1720
+ * Disallow JSX prop spreading the same identifier multiple times.
1721
+ See https://biomejs.dev/linter/rules/no-duplicated-spread-props
1722
+ */
1723
+ noDuplicatedSpreadProps?: NoDuplicatedSpreadPropsConfiguration;
1724
+ /**
1720
1725
  * Disallow empty sources.
1721
1726
  See https://biomejs.dev/linter/rules/no-empty-source
1722
1727
  */
1723
1728
  noEmptySource?: NoEmptySourceConfiguration;
1724
1729
  /**
1730
+ * Require the use of === or !== for comparison with null.
1731
+ See https://biomejs.dev/linter/rules/no-equals-to-null
1732
+ */
1733
+ noEqualsToNull?: NoEqualsToNullConfiguration;
1734
+ /**
1725
1735
  * Require Promise-like statements to be handled appropriately.
1726
1736
  See https://biomejs.dev/linter/rules/no-floating-promises
1727
1737
  */
@@ -1747,11 +1757,21 @@ See https://biomejs.dev/linter/rules/no-jsx-literals
1747
1757
  */
1748
1758
  noJsxLiterals?: NoJsxLiteralsConfiguration;
1749
1759
  /**
1760
+ * Prevent problematic leaked values from being rendered.
1761
+ See https://biomejs.dev/linter/rules/no-leaked-render
1762
+ */
1763
+ noLeakedRender?: NoLeakedRenderConfiguration;
1764
+ /**
1750
1765
  * Disallow Promises to be used in places where they are almost certainly a mistake.
1751
1766
  See https://biomejs.dev/linter/rules/no-misused-promises
1752
1767
  */
1753
1768
  noMisusedPromises?: NoMisusedPromisesConfiguration;
1754
1769
  /**
1770
+ * Disallow creating multiline strings by escaping newlines.
1771
+ See https://biomejs.dev/linter/rules/no-multi-str
1772
+ */
1773
+ noMultiStr?: NoMultiStrConfiguration;
1774
+ /**
1755
1775
  * Prevent client components from being async functions.
1756
1776
  See https://biomejs.dev/linter/rules/no-next-async-client-component
1757
1777
  */
@@ -1762,6 +1782,11 @@ See https://biomejs.dev/linter/rules/no-parameters-only-used-in-recursion
1762
1782
  */
1763
1783
  noParametersOnlyUsedInRecursion?: NoParametersOnlyUsedInRecursionConfiguration;
1764
1784
  /**
1785
+ * Disallow the use of the __proto__ property.
1786
+ See https://biomejs.dev/linter/rules/no-proto
1787
+ */
1788
+ noProto?: NoProtoConfiguration;
1789
+ /**
1765
1790
  * Replaces usages of forwardRef with passing ref as a prop.
1766
1791
  See https://biomejs.dev/linter/rules/no-react-forward-ref
1767
1792
  */
@@ -1777,6 +1802,11 @@ See https://biomejs.dev/linter/rules/no-sync-scripts
1777
1802
  */
1778
1803
  noSyncScripts?: NoSyncScriptsConfiguration;
1779
1804
  /**
1805
+ * Disallow ternary operators.
1806
+ See https://biomejs.dev/linter/rules/no-ternary
1807
+ */
1808
+ noTernary?: NoTernaryConfiguration;
1809
+ /**
1780
1810
  * Disallow unknown DOM properties.
1781
1811
  See https://biomejs.dev/linter/rules/no-unknown-attribute
1782
1812
  */
@@ -1945,6 +1975,11 @@ See https://biomejs.dev/linter/rules/use-vue-valid-v-if
1945
1975
  See https://biomejs.dev/linter/rules/use-vue-valid-v-on
1946
1976
  */
1947
1977
  useVueValidVOn?: UseVueValidVOnConfiguration;
1978
+ /**
1979
+ * Enforce valid v-text Vue directives.
1980
+ See https://biomejs.dev/linter/rules/use-vue-valid-v-text
1981
+ */
1982
+ useVueValidVText?: UseVueValidVTextConfiguration;
1948
1983
  }
1949
1984
  interface Performance {
1950
1985
  /**
@@ -3356,9 +3391,15 @@ type NoDeprecatedImportsConfiguration =
3356
3391
  type NoDuplicateDependenciesConfiguration =
3357
3392
  | RulePlainConfiguration
3358
3393
  | RuleWithNoDuplicateDependenciesOptions;
3394
+ type NoDuplicatedSpreadPropsConfiguration =
3395
+ | RulePlainConfiguration
3396
+ | RuleWithNoDuplicatedSpreadPropsOptions;
3359
3397
  type NoEmptySourceConfiguration =
3360
3398
  | RulePlainConfiguration
3361
3399
  | RuleWithNoEmptySourceOptions;
3400
+ type NoEqualsToNullConfiguration =
3401
+ | RulePlainConfiguration
3402
+ | RuleWithNoEqualsToNullOptions;
3362
3403
  type NoFloatingPromisesConfiguration =
3363
3404
  | RulePlainConfiguration
3364
3405
  | RuleWithNoFloatingPromisesOptions;
@@ -3372,15 +3413,22 @@ type NoIncrementDecrementConfiguration =
3372
3413
  type NoJsxLiteralsConfiguration =
3373
3414
  | RulePlainConfiguration
3374
3415
  | RuleWithNoJsxLiteralsOptions;
3416
+ type NoLeakedRenderConfiguration =
3417
+ | RulePlainConfiguration
3418
+ | RuleWithNoLeakedRenderOptions;
3375
3419
  type NoMisusedPromisesConfiguration =
3376
3420
  | RulePlainConfiguration
3377
3421
  | RuleWithNoMisusedPromisesOptions;
3422
+ type NoMultiStrConfiguration =
3423
+ | RulePlainConfiguration
3424
+ | RuleWithNoMultiStrOptions;
3378
3425
  type NoNextAsyncClientComponentConfiguration =
3379
3426
  | RulePlainConfiguration
3380
3427
  | RuleWithNoNextAsyncClientComponentOptions;
3381
3428
  type NoParametersOnlyUsedInRecursionConfiguration =
3382
3429
  | RulePlainConfiguration
3383
3430
  | RuleWithNoParametersOnlyUsedInRecursionOptions;
3431
+ type NoProtoConfiguration = RulePlainConfiguration | RuleWithNoProtoOptions;
3384
3432
  type NoReactForwardRefConfiguration =
3385
3433
  | RulePlainConfiguration
3386
3434
  | RuleWithNoReactForwardRefOptions;
@@ -3388,6 +3436,7 @@ type NoShadowConfiguration = RulePlainConfiguration | RuleWithNoShadowOptions;
3388
3436
  type NoSyncScriptsConfiguration =
3389
3437
  | RulePlainConfiguration
3390
3438
  | RuleWithNoSyncScriptsOptions;
3439
+ type NoTernaryConfiguration = RulePlainConfiguration | RuleWithNoTernaryOptions;
3391
3440
  type NoUnknownAttributeConfiguration =
3392
3441
  | RulePlainConfiguration
3393
3442
  | RuleWithNoUnknownAttributeOptions;
@@ -3483,6 +3532,9 @@ type UseVueValidVIfConfiguration =
3483
3532
  type UseVueValidVOnConfiguration =
3484
3533
  | RulePlainConfiguration
3485
3534
  | RuleWithUseVueValidVOnOptions;
3535
+ type UseVueValidVTextConfiguration =
3536
+ | RulePlainConfiguration
3537
+ | RuleWithUseVueValidVTextOptions;
3486
3538
  type NoAccumulatingSpreadConfiguration =
3487
3539
  | RulePlainConfiguration
3488
3540
  | RuleWithNoAccumulatingSpreadOptions;
@@ -4702,10 +4754,19 @@ interface RuleWithNoDuplicateDependenciesOptions {
4702
4754
  level: RulePlainConfiguration;
4703
4755
  options?: NoDuplicateDependenciesOptions;
4704
4756
  }
4757
+ interface RuleWithNoDuplicatedSpreadPropsOptions {
4758
+ level: RulePlainConfiguration;
4759
+ options?: NoDuplicatedSpreadPropsOptions;
4760
+ }
4705
4761
  interface RuleWithNoEmptySourceOptions {
4706
4762
  level: RulePlainConfiguration;
4707
4763
  options?: NoEmptySourceOptions;
4708
4764
  }
4765
+ interface RuleWithNoEqualsToNullOptions {
4766
+ fix?: FixKind;
4767
+ level: RulePlainConfiguration;
4768
+ options?: NoEqualsToNullOptions;
4769
+ }
4709
4770
  interface RuleWithNoFloatingPromisesOptions {
4710
4771
  fix?: FixKind;
4711
4772
  level: RulePlainConfiguration;
@@ -4727,11 +4788,19 @@ interface RuleWithNoJsxLiteralsOptions {
4727
4788
  level: RulePlainConfiguration;
4728
4789
  options?: NoJsxLiteralsOptions;
4729
4790
  }
4791
+ interface RuleWithNoLeakedRenderOptions {
4792
+ level: RulePlainConfiguration;
4793
+ options?: NoLeakedRenderOptions;
4794
+ }
4730
4795
  interface RuleWithNoMisusedPromisesOptions {
4731
4796
  fix?: FixKind;
4732
4797
  level: RulePlainConfiguration;
4733
4798
  options?: NoMisusedPromisesOptions;
4734
4799
  }
4800
+ interface RuleWithNoMultiStrOptions {
4801
+ level: RulePlainConfiguration;
4802
+ options?: NoMultiStrOptions;
4803
+ }
4735
4804
  interface RuleWithNoNextAsyncClientComponentOptions {
4736
4805
  level: RulePlainConfiguration;
4737
4806
  options?: NoNextAsyncClientComponentOptions;
@@ -4741,6 +4810,10 @@ interface RuleWithNoParametersOnlyUsedInRecursionOptions {
4741
4810
  level: RulePlainConfiguration;
4742
4811
  options?: NoParametersOnlyUsedInRecursionOptions;
4743
4812
  }
4813
+ interface RuleWithNoProtoOptions {
4814
+ level: RulePlainConfiguration;
4815
+ options?: NoProtoOptions;
4816
+ }
4744
4817
  interface RuleWithNoReactForwardRefOptions {
4745
4818
  fix?: FixKind;
4746
4819
  level: RulePlainConfiguration;
@@ -4754,6 +4827,10 @@ interface RuleWithNoSyncScriptsOptions {
4754
4827
  level: RulePlainConfiguration;
4755
4828
  options?: NoSyncScriptsOptions;
4756
4829
  }
4830
+ interface RuleWithNoTernaryOptions {
4831
+ level: RulePlainConfiguration;
4832
+ options?: NoTernaryOptions;
4833
+ }
4757
4834
  interface RuleWithNoUnknownAttributeOptions {
4758
4835
  level: RulePlainConfiguration;
4759
4836
  options?: NoUnknownAttributeOptions;
@@ -4895,6 +4972,10 @@ interface RuleWithUseVueValidVOnOptions {
4895
4972
  level: RulePlainConfiguration;
4896
4973
  options?: UseVueValidVOnOptions;
4897
4974
  }
4975
+ interface RuleWithUseVueValidVTextOptions {
4976
+ level: RulePlainConfiguration;
4977
+ options?: UseVueValidVTextOptions;
4978
+ }
4898
4979
  interface RuleWithNoAccumulatingSpreadOptions {
4899
4980
  level: RulePlainConfiguration;
4900
4981
  options?: NoAccumulatingSpreadOptions;
@@ -5990,12 +6071,14 @@ type UseYieldOptions = {};
5990
6071
  type NoContinueOptions = {};
5991
6072
  type NoDeprecatedImportsOptions = {};
5992
6073
  type NoDuplicateDependenciesOptions = {};
6074
+ type NoDuplicatedSpreadPropsOptions = {};
5993
6075
  interface NoEmptySourceOptions {
5994
6076
  /**
5995
6077
  * Whether comments are considered meaningful
5996
6078
  */
5997
6079
  allowComments?: boolean;
5998
6080
  }
6081
+ type NoEqualsToNullOptions = {};
5999
6082
  type NoFloatingPromisesOptions = {};
6000
6083
  type NoForInOptions = {};
6001
6084
  interface NoImportCyclesOptions {
@@ -6027,12 +6110,16 @@ interface NoJsxLiteralsOptions {
6027
6110
  */
6028
6111
  noStrings?: boolean;
6029
6112
  }
6113
+ type NoLeakedRenderOptions = {};
6030
6114
  type NoMisusedPromisesOptions = {};
6115
+ type NoMultiStrOptions = {};
6031
6116
  type NoNextAsyncClientComponentOptions = {};
6032
6117
  type NoParametersOnlyUsedInRecursionOptions = {};
6118
+ type NoProtoOptions = {};
6033
6119
  type NoReactForwardRefOptions = {};
6034
6120
  type NoShadowOptions = {};
6035
6121
  type NoSyncScriptsOptions = {};
6122
+ type NoTernaryOptions = {};
6036
6123
  interface NoUnknownAttributeOptions {
6037
6124
  ignore?: string[];
6038
6125
  }
@@ -6124,6 +6211,7 @@ interface UseVueValidVOnOptions {
6124
6211
  */
6125
6212
  modifiers?: string[];
6126
6213
  }
6214
+ type UseVueValidVTextOptions = {};
6127
6215
  type NoAccumulatingSpreadOptions = {};
6128
6216
  type NoAwaitInLoopsOptions = {};
6129
6217
  type NoBarrelFileOptions = {};
@@ -6808,19 +6896,25 @@ type Category =
6808
6896
  | "lint/nursery/noDeprecatedImports"
6809
6897
  | "lint/nursery/noDuplicateDependencies"
6810
6898
  | "lint/nursery/noEmptySource"
6899
+ | "lint/nursery/noEqualsToNull"
6811
6900
  | "lint/nursery/noFloatingPromises"
6812
6901
  | "lint/nursery/noForIn"
6813
6902
  | "lint/nursery/noImplicitCoercion"
6814
6903
  | "lint/nursery/noImportCycles"
6815
6904
  | "lint/nursery/noIncrementDecrement"
6816
6905
  | "lint/nursery/noJsxLiterals"
6906
+ | "lint/nursery/noLeakedRender"
6817
6907
  | "lint/nursery/noMissingGenericFamilyKeyword"
6818
6908
  | "lint/nursery/noMisusedPromises"
6909
+ | "lint/nursery/noMultiStr"
6819
6910
  | "lint/nursery/noNextAsyncClientComponent"
6820
6911
  | "lint/nursery/noParametersOnlyUsedInRecursion"
6912
+ | "lint/nursery/noProto"
6821
6913
  | "lint/nursery/noReactForwardRef"
6822
6914
  | "lint/nursery/noShadow"
6915
+ | "lint/nursery/noDuplicatedSpreadProps"
6823
6916
  | "lint/nursery/noSyncScripts"
6917
+ | "lint/nursery/noTernary"
6824
6918
  | "lint/nursery/noUnknownAttribute"
6825
6919
  | "lint/nursery/noUnnecessaryConditions"
6826
6920
  | "lint/nursery/noUnresolvedImports"
@@ -6864,6 +6958,7 @@ type Category =
6864
6958
  | "lint/nursery/useVueValidVIf"
6865
6959
  | "lint/nursery/useVueValidVModel"
6866
6960
  | "lint/nursery/useVueValidVOn"
6961
+ | "lint/nursery/useVueValidVText"
6867
6962
  | "lint/performance/noAccumulatingSpread"
6868
6963
  | "lint/performance/noAwaitInLoops"
6869
6964
  | "lint/performance/noBarrelFile"
Binary file
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "Biome Developers and Contributors"
5
5
  ],
6
6
  "description": "WebAssembly bindings to the Biome workspace API",
7
- "version": "2.3.6",
7
+ "version": "2.3.8",
8
8
  "license": "MIT OR Apache-2.0",
9
9
  "repository": {
10
10
  "type": "git",