@biomejs/wasm-web
Advanced tools
Comparing version 1.5.3-nightly.6cbf1c7 to 1.5.3-nightly.d2858ee
@@ -105,2 +105,6 @@ /* tslint:disable */ | ||
interface PartialFormatterConfiguration { | ||
/** | ||
* The attribute position style. By default auto. | ||
*/ | ||
attributePosition?: AttributePosition; | ||
enabled?: boolean; | ||
@@ -257,2 +261,3 @@ /** | ||
} | ||
type AttributePosition = "auto" | "multiline"; | ||
type PlainIndentStyle = "tab" | "space"; | ||
@@ -267,2 +272,6 @@ type LineEnding = "lf" | "crlf" | "cr"; | ||
/** | ||
* The attribute position style in JavaScript code. Defaults to auto. | ||
*/ | ||
attributePosition?: AttributePosition; | ||
/** | ||
* 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. | ||
@@ -811,2 +820,6 @@ */ | ||
/** | ||
* Disallow the use of console. | ||
*/ | ||
noConsole?: RuleConfiguration; | ||
/** | ||
* Disallow two keys with the same name inside a JSON object. | ||
@@ -848,2 +861,10 @@ */ | ||
/** | ||
* Avoid re-export all | ||
*/ | ||
noReExportAll?: RuleConfiguration; | ||
/** | ||
* Disallow specified modules when loaded by import or require. | ||
*/ | ||
noRestrictedImports?: RuleConfiguration; | ||
/** | ||
* Disallow disabled tests. | ||
@@ -1294,2 +1315,6 @@ */ | ||
interface OverrideFormatterConfiguration { | ||
/** | ||
* The attribute position style. | ||
*/ | ||
attributePosition?: AttributePosition; | ||
enabled?: boolean; | ||
@@ -1351,2 +1376,3 @@ /** | ||
| RestrictedGlobalsOptions | ||
| RestrictedImportsOptions | ||
| ValidAriaRoleOptions | ||
@@ -1396,2 +1422,8 @@ | UtilityClassSortingOptions; | ||
} | ||
interface RestrictedImportsOptions { | ||
/** | ||
* A list of names that should trigger the rule | ||
*/ | ||
paths: {}; | ||
} | ||
interface ValidAriaRoleOptions { | ||
@@ -1447,2 +1479,3 @@ allowInvalidRoles: string[]; | ||
type Language = | ||
| "Astro" | ||
| "JavaScript" | ||
@@ -1604,2 +1637,3 @@ | "JavaScriptReact" | ||
| "lint/nursery/noApproximativeNumericConstant" | ||
| "lint/nursery/noConsole" | ||
| "lint/nursery/noDuplicateJsonKeys" | ||
@@ -1614,2 +1648,4 @@ | "lint/nursery/noEmptyBlockStatements" | ||
| "lint/nursery/noNodejsModules" | ||
| "lint/nursery/noReExportAll" | ||
| "lint/nursery/noRestrictedImports" | ||
| "lint/nursery/noSkippedTests" | ||
@@ -1616,0 +1652,0 @@ | "lint/nursery/noThenProperty" |
@@ -1,1 +0,1 @@ | ||
{"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.6cbf1c7","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"],"module":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","sideEffects":["./snippets/*"],"keywords":["parser","linter","formatter"]} | ||
{"name":"@biomejs/wasm-web","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.d2858ee","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"],"module":"biome_wasm.js","homepage":"https://biomejs.dev/","types":"biome_wasm.d.ts","sideEffects":["./snippets/*"],"keywords":["parser","linter","formatter"]} |
Sorry, the diff of this file is not supported yet
8958266
3023