@biomejs/wasm-bundler 2.3.7 → 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
  */
@@ -3361,9 +3391,15 @@ type NoDeprecatedImportsConfiguration =
3361
3391
  type NoDuplicateDependenciesConfiguration =
3362
3392
  | RulePlainConfiguration
3363
3393
  | RuleWithNoDuplicateDependenciesOptions;
3394
+ type NoDuplicatedSpreadPropsConfiguration =
3395
+ | RulePlainConfiguration
3396
+ | RuleWithNoDuplicatedSpreadPropsOptions;
3364
3397
  type NoEmptySourceConfiguration =
3365
3398
  | RulePlainConfiguration
3366
3399
  | RuleWithNoEmptySourceOptions;
3400
+ type NoEqualsToNullConfiguration =
3401
+ | RulePlainConfiguration
3402
+ | RuleWithNoEqualsToNullOptions;
3367
3403
  type NoFloatingPromisesConfiguration =
3368
3404
  | RulePlainConfiguration
3369
3405
  | RuleWithNoFloatingPromisesOptions;
@@ -3377,15 +3413,22 @@ type NoIncrementDecrementConfiguration =
3377
3413
  type NoJsxLiteralsConfiguration =
3378
3414
  | RulePlainConfiguration
3379
3415
  | RuleWithNoJsxLiteralsOptions;
3416
+ type NoLeakedRenderConfiguration =
3417
+ | RulePlainConfiguration
3418
+ | RuleWithNoLeakedRenderOptions;
3380
3419
  type NoMisusedPromisesConfiguration =
3381
3420
  | RulePlainConfiguration
3382
3421
  | RuleWithNoMisusedPromisesOptions;
3422
+ type NoMultiStrConfiguration =
3423
+ | RulePlainConfiguration
3424
+ | RuleWithNoMultiStrOptions;
3383
3425
  type NoNextAsyncClientComponentConfiguration =
3384
3426
  | RulePlainConfiguration
3385
3427
  | RuleWithNoNextAsyncClientComponentOptions;
3386
3428
  type NoParametersOnlyUsedInRecursionConfiguration =
3387
3429
  | RulePlainConfiguration
3388
3430
  | RuleWithNoParametersOnlyUsedInRecursionOptions;
3431
+ type NoProtoConfiguration = RulePlainConfiguration | RuleWithNoProtoOptions;
3389
3432
  type NoReactForwardRefConfiguration =
3390
3433
  | RulePlainConfiguration
3391
3434
  | RuleWithNoReactForwardRefOptions;
@@ -3393,6 +3436,7 @@ type NoShadowConfiguration = RulePlainConfiguration | RuleWithNoShadowOptions;
3393
3436
  type NoSyncScriptsConfiguration =
3394
3437
  | RulePlainConfiguration
3395
3438
  | RuleWithNoSyncScriptsOptions;
3439
+ type NoTernaryConfiguration = RulePlainConfiguration | RuleWithNoTernaryOptions;
3396
3440
  type NoUnknownAttributeConfiguration =
3397
3441
  | RulePlainConfiguration
3398
3442
  | RuleWithNoUnknownAttributeOptions;
@@ -4710,10 +4754,19 @@ interface RuleWithNoDuplicateDependenciesOptions {
4710
4754
  level: RulePlainConfiguration;
4711
4755
  options?: NoDuplicateDependenciesOptions;
4712
4756
  }
4757
+ interface RuleWithNoDuplicatedSpreadPropsOptions {
4758
+ level: RulePlainConfiguration;
4759
+ options?: NoDuplicatedSpreadPropsOptions;
4760
+ }
4713
4761
  interface RuleWithNoEmptySourceOptions {
4714
4762
  level: RulePlainConfiguration;
4715
4763
  options?: NoEmptySourceOptions;
4716
4764
  }
4765
+ interface RuleWithNoEqualsToNullOptions {
4766
+ fix?: FixKind;
4767
+ level: RulePlainConfiguration;
4768
+ options?: NoEqualsToNullOptions;
4769
+ }
4717
4770
  interface RuleWithNoFloatingPromisesOptions {
4718
4771
  fix?: FixKind;
4719
4772
  level: RulePlainConfiguration;
@@ -4735,11 +4788,19 @@ interface RuleWithNoJsxLiteralsOptions {
4735
4788
  level: RulePlainConfiguration;
4736
4789
  options?: NoJsxLiteralsOptions;
4737
4790
  }
4791
+ interface RuleWithNoLeakedRenderOptions {
4792
+ level: RulePlainConfiguration;
4793
+ options?: NoLeakedRenderOptions;
4794
+ }
4738
4795
  interface RuleWithNoMisusedPromisesOptions {
4739
4796
  fix?: FixKind;
4740
4797
  level: RulePlainConfiguration;
4741
4798
  options?: NoMisusedPromisesOptions;
4742
4799
  }
4800
+ interface RuleWithNoMultiStrOptions {
4801
+ level: RulePlainConfiguration;
4802
+ options?: NoMultiStrOptions;
4803
+ }
4743
4804
  interface RuleWithNoNextAsyncClientComponentOptions {
4744
4805
  level: RulePlainConfiguration;
4745
4806
  options?: NoNextAsyncClientComponentOptions;
@@ -4749,6 +4810,10 @@ interface RuleWithNoParametersOnlyUsedInRecursionOptions {
4749
4810
  level: RulePlainConfiguration;
4750
4811
  options?: NoParametersOnlyUsedInRecursionOptions;
4751
4812
  }
4813
+ interface RuleWithNoProtoOptions {
4814
+ level: RulePlainConfiguration;
4815
+ options?: NoProtoOptions;
4816
+ }
4752
4817
  interface RuleWithNoReactForwardRefOptions {
4753
4818
  fix?: FixKind;
4754
4819
  level: RulePlainConfiguration;
@@ -4762,6 +4827,10 @@ interface RuleWithNoSyncScriptsOptions {
4762
4827
  level: RulePlainConfiguration;
4763
4828
  options?: NoSyncScriptsOptions;
4764
4829
  }
4830
+ interface RuleWithNoTernaryOptions {
4831
+ level: RulePlainConfiguration;
4832
+ options?: NoTernaryOptions;
4833
+ }
4765
4834
  interface RuleWithNoUnknownAttributeOptions {
4766
4835
  level: RulePlainConfiguration;
4767
4836
  options?: NoUnknownAttributeOptions;
@@ -6002,12 +6071,14 @@ type UseYieldOptions = {};
6002
6071
  type NoContinueOptions = {};
6003
6072
  type NoDeprecatedImportsOptions = {};
6004
6073
  type NoDuplicateDependenciesOptions = {};
6074
+ type NoDuplicatedSpreadPropsOptions = {};
6005
6075
  interface NoEmptySourceOptions {
6006
6076
  /**
6007
6077
  * Whether comments are considered meaningful
6008
6078
  */
6009
6079
  allowComments?: boolean;
6010
6080
  }
6081
+ type NoEqualsToNullOptions = {};
6011
6082
  type NoFloatingPromisesOptions = {};
6012
6083
  type NoForInOptions = {};
6013
6084
  interface NoImportCyclesOptions {
@@ -6039,12 +6110,16 @@ interface NoJsxLiteralsOptions {
6039
6110
  */
6040
6111
  noStrings?: boolean;
6041
6112
  }
6113
+ type NoLeakedRenderOptions = {};
6042
6114
  type NoMisusedPromisesOptions = {};
6115
+ type NoMultiStrOptions = {};
6043
6116
  type NoNextAsyncClientComponentOptions = {};
6044
6117
  type NoParametersOnlyUsedInRecursionOptions = {};
6118
+ type NoProtoOptions = {};
6045
6119
  type NoReactForwardRefOptions = {};
6046
6120
  type NoShadowOptions = {};
6047
6121
  type NoSyncScriptsOptions = {};
6122
+ type NoTernaryOptions = {};
6048
6123
  interface NoUnknownAttributeOptions {
6049
6124
  ignore?: string[];
6050
6125
  }
@@ -6821,19 +6896,25 @@ type Category =
6821
6896
  | "lint/nursery/noDeprecatedImports"
6822
6897
  | "lint/nursery/noDuplicateDependencies"
6823
6898
  | "lint/nursery/noEmptySource"
6899
+ | "lint/nursery/noEqualsToNull"
6824
6900
  | "lint/nursery/noFloatingPromises"
6825
6901
  | "lint/nursery/noForIn"
6826
6902
  | "lint/nursery/noImplicitCoercion"
6827
6903
  | "lint/nursery/noImportCycles"
6828
6904
  | "lint/nursery/noIncrementDecrement"
6829
6905
  | "lint/nursery/noJsxLiterals"
6906
+ | "lint/nursery/noLeakedRender"
6830
6907
  | "lint/nursery/noMissingGenericFamilyKeyword"
6831
6908
  | "lint/nursery/noMisusedPromises"
6909
+ | "lint/nursery/noMultiStr"
6832
6910
  | "lint/nursery/noNextAsyncClientComponent"
6833
6911
  | "lint/nursery/noParametersOnlyUsedInRecursion"
6912
+ | "lint/nursery/noProto"
6834
6913
  | "lint/nursery/noReactForwardRef"
6835
6914
  | "lint/nursery/noShadow"
6915
+ | "lint/nursery/noDuplicatedSpreadProps"
6836
6916
  | "lint/nursery/noSyncScripts"
6917
+ | "lint/nursery/noTernary"
6837
6918
  | "lint/nursery/noUnknownAttribute"
6838
6919
  | "lint/nursery/noUnnecessaryConditions"
6839
6920
  | "lint/nursery/noUnresolvedImports"
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Biome Developers and Contributors"
6
6
  ],
7
7
  "description": "WebAssembly bindings to the Biome workspace API",
8
- "version": "2.3.7",
8
+ "version": "2.3.8",
9
9
  "license": "MIT OR Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",