@biomejs/wasm-nodejs 1.3.1 → 1.3.3-nightly.8475169

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.
@@ -1195,6 +1196,10 @@ interface Hooks {
1195
1196
  name: string;
1196
1197
  }
1197
1198
  type EnumMemberCase = "PascalCase" | "CONSTANT_CASE" | "camelCase";
1199
+ interface ProjectFeaturesParams {
1200
+ manifest_path: RomePath;
1201
+ }
1202
+ interface ProjectFeaturesResult {}
1198
1203
  interface OpenFileParams {
1199
1204
  content: string;
1200
1205
  language_hint?: Language;
@@ -1355,6 +1360,7 @@ type Category =
1355
1360
  | "lint/nursery/noInvalidNewBuiltin"
1356
1361
  | "lint/nursery/noMisleadingInstantiator"
1357
1362
  | "lint/nursery/noMisrefactoredShorthandAssign"
1363
+ | "lint/nursery/noThisInStatic"
1358
1364
  | "lint/nursery/noUnusedImports"
1359
1365
  | "lint/nursery/noUselessElse"
1360
1366
  | "lint/nursery/noUselessLoneBlockStatements"
@@ -1447,6 +1453,7 @@ type Category =
1447
1453
  | "organizeImports"
1448
1454
  | "migrate"
1449
1455
  | "deserialize"
1456
+ | "project"
1450
1457
  | "internalError/io"
1451
1458
  | "internalError/fs"
1452
1459
  | "internalError/panic"
Binary file
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.3.1","license":"MIT","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"main":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","keywords":["parser","linter","formatter"]}
1
+ {"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.3.3-nightly.8475169","license":"MIT","repository":{"type":"git","url":"https://github.com/biomejs/biome"},"files":["biome_wasm_bg.wasm","biome_wasm.js","biome_wasm.d.ts"],"main":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","keywords":["parser","linter","formatter"]}