@biomejs/wasm-web 1.3.0 → 1.3.2

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
@@ -173,9 +173,7 @@ interface OrganizeImports {
173
173
  */
174
174
  include?: StringSet;
175
175
  }
176
- interface Overrides {
177
- list: OverridePattern[];
178
- }
176
+ type Overrides = OverridePattern[];
179
177
  interface VcsConfiguration {
180
178
  /**
181
179
  * The kind of client.
@@ -722,6 +720,10 @@ interface Nursery {
722
720
  * Disallow shorthand assign when variable appears on both sides.
723
721
  */
724
722
  noMisrefactoredShorthandAssign?: RuleConfiguration;
723
+ /**
724
+ * Disallow this and super in static contexts.
725
+ */
726
+ noThisInStatic?: RuleConfiguration;
725
727
  /**
726
728
  * Disallow unused imports.
727
729
  */
@@ -1148,8 +1150,7 @@ type PossibleOptions =
1148
1150
  | ComplexityOptions
1149
1151
  | HooksOptions
1150
1152
  | NamingConventionOptions
1151
- | RestrictedGlobalsOptions
1152
- | null;
1153
+ | RestrictedGlobalsOptions;
1153
1154
  interface ComplexityOptions {
1154
1155
  /**
1155
1156
  * The maximum complexity score that we allow. Anything higher is considered excessive.
@@ -1355,6 +1356,7 @@ type Category =
1355
1356
  | "lint/nursery/noInvalidNewBuiltin"
1356
1357
  | "lint/nursery/noMisleadingInstantiator"
1357
1358
  | "lint/nursery/noMisrefactoredShorthandAssign"
1359
+ | "lint/nursery/noThisInStatic"
1358
1360
  | "lint/nursery/noUnusedImports"
1359
1361
  | "lint/nursery/noUselessElse"
1360
1362
  | "lint/nursery/noUselessLoneBlockStatements"
Binary file
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.3.0","license":"MIT","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"module":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","sideEffects":["./snippets/*"],"keywords":["parser","linter","formatter"]}
1
+ {"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.3.2","license":"MIT","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"module":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","sideEffects":["./snippets/*"],"keywords":["parser","linter","formatter"]}