Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@biomejs/wasm-nodejs

Package Overview
Dependencies
Maintainers
4
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biomejs/wasm-nodejs - npm Package Compare versions

Comparing version 1.3.3-nightly.8475169 to 1.3.3-nightly.38797b7

62

biome_wasm.d.ts

@@ -113,2 +113,6 @@ /* tslint:disable */

/**
* The type of line ending.
*/
lineEnding?: LineEnding;
/**
* What's the max width of a line. Defaults to 80.

@@ -199,2 +203,3 @@ */

type PlainIndentStyle = "tab" | "space";
type LineEnding = "lf" | "crlf" | "cr";
type LineWidth = number;

@@ -207,2 +212,10 @@ interface JavascriptFormatter {

/**
* Whether to hug the closing bracket of multiline HTML/JSX tags to the end of the last line, rather than being alone on the following line. Defaults to false.
*/
bracketSameLine?: boolean;
/**
* Whether to insert spaces around brackets in object literals. Defaults to true.
*/
bracketSpacing?: boolean;
/**
* Control the formatter for JavaScript (and its super languages) files.

@@ -228,4 +241,8 @@ */

/**
* What's the max width of a line, applied to JavaScript (and its super languages) files. Defaults to 80.
* The type of line ending applied to JavaScript (and its super languages) files.
*/
lineEnding?: LineEnding;
/**
* What's the max width of a line applied to JavaScript (and its super languages) files. Defaults to 80.
*/
lineWidth?: LineWidth;

@@ -276,4 +293,8 @@ /**

/**
* What's the max width of a line, applied to JSON (and its super languages) files. Defaults to 80.
* The type of line ending applied to JSON (and its super languages) files.
*/
lineEnding?: LineEnding;
/**
* What's the max width of a line applied to JSON (and its super languages) files. Defaults to 80.
*/
lineWidth?: LineWidth;

@@ -701,2 +722,6 @@ }

/**
* Disallow default exports.
*/
noDefaultExport?: RuleConfiguration;
/**
* Disallow two keys with the same name inside a JSON object.

@@ -714,2 +739,6 @@ */

/**
* Disallow use of implicit any type on variable declarations.
*/
noImplicitAnyLet?: RuleConfiguration;
/**
* Enforce that non-interactive ARIA roles are not assigned to interactive HTML elements.

@@ -739,2 +768,6 @@ */

/**
* Disallow unused private class members
*/
noUnusedPrivateClassMembers?: RuleConfiguration;
/**
* Disallow else block when the if block breaks early.

@@ -764,2 +797,6 @@ */

/**
* Ensure async functions utilize await.
*/
useAwait?: RuleConfiguration;
/**
* Enforce the use of import type when an import only has specifiers with type qualifier.

@@ -776,2 +813,6 @@ */

useShorthandAssign?: RuleConfiguration;
/**
* Elements with ARIA roles must use a valid, non-abstract ARIA role.
*/
useValidAriaRole?: RuleConfiguration;
}

@@ -1133,2 +1174,6 @@ interface Performance {

/**
* The type of line ending.
*/
lineEnding?: LineEnding;
/**
* What's the max width of a line. Defaults to 80.

@@ -1164,3 +1209,4 @@ */

| NamingConventionOptions
| RestrictedGlobalsOptions;
| RestrictedGlobalsOptions
| ValidAriaRoleOptions;
interface ComplexityOptions {

@@ -1194,2 +1240,6 @@ /**

}
interface ValidAriaRoleOptions {
allowedInvalidRoles: string[];
ignoreNonDom: boolean;
}
interface Hooks {

@@ -1369,5 +1419,7 @@ /**

| "lint/nursery/noApproximativeNumericConstant"
| "lint/nursery/noDefaultExport"
| "lint/nursery/noDuplicateJsonKeys"
| "lint/nursery/noEmptyBlockStatements"
| "lint/nursery/noEmptyCharacterClassInRegex"
| "lint/nursery/noImplicitAnyLet"
| "lint/nursery/noInteractiveElementToNoninteractiveRole"

@@ -1379,2 +1431,3 @@ | "lint/nursery/noInvalidNewBuiltin"

| "lint/nursery/noUnusedImports"
| "lint/nursery/noUnusedPrivateClassMembers"
| "lint/nursery/noUselessElse"

@@ -1385,2 +1438,3 @@ | "lint/nursery/noUselessLoneBlockStatements"

| "lint/nursery/useAsConstAssertion"
| "lint/nursery/useAwait"
| "lint/nursery/useBiomeSuppressionComment"

@@ -1390,2 +1444,3 @@ | "lint/nursery/useGroupedTypeImport"

| "lint/nursery/useShorthandAssign"
| "lint/nursery/useValidAriaRole"
| "lint/performance/noAccumulatingSpread"

@@ -1479,2 +1534,3 @@ | "lint/performance/noDelete"

| "parse/noSuperWithoutExtends"
| "parse/noInitializerWithDefinite"
| "parse/noDuplicatePrivateClassMembers"

@@ -1481,0 +1537,0 @@ | "lint"

2

package.json

@@ -1,1 +0,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"]}
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.3.3-nightly.38797b7","license":"MIT OR Apache-2.0","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"]}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc