@biomejs/wasm-nodejs
Advanced tools
Comparing version 1.5.3-nightly.24fcf19 to 1.5.3-nightly.6cbf1c7
@@ -24,3 +24,3 @@ /* tslint:disable */ | ||
interface UpdateSettingsParams { | ||
configuration: Configuration; | ||
configuration: PartialConfiguration; | ||
gitignore_matches: string[]; | ||
@@ -30,3 +30,3 @@ vcs_base_path?: string; | ||
} | ||
interface Configuration { | ||
interface PartialConfiguration { | ||
/** | ||
@@ -39,3 +39,3 @@ * A field for the [JSON schema](https://json-schema.org/) specification | ||
*/ | ||
css?: CssConfiguration; | ||
css?: PartialCssConfiguration; | ||
/** | ||
@@ -48,23 +48,23 @@ * A list of paths to other JSON files, used to extends the current configuration. | ||
*/ | ||
files?: FilesConfiguration; | ||
files?: PartialFilesConfiguration; | ||
/** | ||
* The configuration of the formatter | ||
*/ | ||
formatter?: FormatterConfiguration; | ||
formatter?: PartialFormatterConfiguration; | ||
/** | ||
* Specific configuration for the JavaScript language | ||
*/ | ||
javascript?: JavascriptConfiguration; | ||
javascript?: PartialJavascriptConfiguration; | ||
/** | ||
* Specific configuration for the Json language | ||
*/ | ||
json?: JsonConfiguration; | ||
json?: PartialJsonConfiguration; | ||
/** | ||
* The configuration for the linter | ||
*/ | ||
linter?: LinterConfiguration; | ||
linter?: PartialLinterConfiguration; | ||
/** | ||
* The configuration of the import sorting | ||
*/ | ||
organizeImports?: OrganizeImports; | ||
organizeImports?: PartialOrganizeImports; | ||
/** | ||
@@ -77,16 +77,16 @@ * A list of granular patterns that should be applied only to a sub set of files | ||
*/ | ||
vcs?: VcsConfiguration; | ||
vcs?: PartialVcsConfiguration; | ||
} | ||
interface CssConfiguration { | ||
interface PartialCssConfiguration { | ||
/** | ||
* Formatting options | ||
*/ | ||
formatter?: CssFormatter; | ||
formatter?: PartialCssFormatter; | ||
/** | ||
* Parsing options | ||
*/ | ||
parser?: CssParser; | ||
parser?: PartialCssParser; | ||
} | ||
type StringSet = string[]; | ||
interface FilesConfiguration { | ||
interface PartialFilesConfiguration { | ||
/** | ||
@@ -109,3 +109,3 @@ * A list of Unix shell style patterns. Biome will ignore files/folders that will match these patterns. | ||
} | ||
interface FormatterConfiguration { | ||
interface PartialFormatterConfiguration { | ||
enabled?: boolean; | ||
@@ -145,7 +145,7 @@ /** | ||
} | ||
interface JavascriptConfiguration { | ||
interface PartialJavascriptConfiguration { | ||
/** | ||
* Formatting options | ||
*/ | ||
formatter?: JavascriptFormatter; | ||
formatter?: PartialJavascriptFormatter; | ||
/** | ||
@@ -157,19 +157,19 @@ * A list of global bindings that should be ignored by the analyzers | ||
globals?: StringSet; | ||
organize_imports?: JavascriptOrganizeImports; | ||
organize_imports?: PartialJavascriptOrganizeImports; | ||
/** | ||
* Parsing options | ||
*/ | ||
parser?: JavascriptParser; | ||
parser?: PartialJavascriptParser; | ||
} | ||
interface JsonConfiguration { | ||
interface PartialJsonConfiguration { | ||
/** | ||
* Formatting options | ||
*/ | ||
formatter?: JsonFormatter; | ||
formatter?: PartialJsonFormatter; | ||
/** | ||
* Parsing options | ||
*/ | ||
parser?: JsonParser; | ||
parser?: PartialJsonParser; | ||
} | ||
interface LinterConfiguration { | ||
interface PartialLinterConfiguration { | ||
/** | ||
@@ -192,3 +192,3 @@ * if `false`, it disables the feature and the linter won't be executed. `true` by default | ||
} | ||
interface OrganizeImports { | ||
interface PartialOrganizeImports { | ||
/** | ||
@@ -208,3 +208,3 @@ * Enables the organization of imports | ||
type Overrides = OverridePattern[]; | ||
interface VcsConfiguration { | ||
interface PartialVcsConfiguration { | ||
/** | ||
@@ -233,3 +233,3 @@ * The kind of client. | ||
} | ||
interface CssFormatter { | ||
interface PartialCssFormatter { | ||
/** | ||
@@ -261,3 +261,3 @@ * Control the formatter for CSS (and its super languages) files. | ||
} | ||
interface CssParser { | ||
interface PartialCssParser { | ||
/** | ||
@@ -271,3 +271,3 @@ * Allow comments to appear on incorrect lines in `.css` files | ||
type LineWidth = number; | ||
interface JavascriptFormatter { | ||
interface PartialJavascriptFormatter { | ||
/** | ||
@@ -330,4 +330,4 @@ * Whether to add non-necessary parentheses to arrow functions. Defaults to "always". | ||
} | ||
interface JavascriptOrganizeImports {} | ||
interface JavascriptParser { | ||
interface PartialJavascriptOrganizeImports {} | ||
interface PartialJavascriptParser { | ||
/** | ||
@@ -340,3 +340,3 @@ * It enables the experimental and unsafe parsing of parameter decorators | ||
} | ||
interface JsonFormatter { | ||
interface PartialJsonFormatter { | ||
/** | ||
@@ -367,3 +367,3 @@ * Control the formatter for JSON (and its super languages) files. | ||
} | ||
interface JsonParser { | ||
interface PartialJsonParser { | ||
/** | ||
@@ -400,3 +400,3 @@ * Allow parsing comments in `.json` files | ||
*/ | ||
css?: CssConfiguration; | ||
css?: PartialCssConfiguration; | ||
/** | ||
@@ -417,7 +417,7 @@ * Specific configuration for the Json language | ||
*/ | ||
javascript?: JavascriptConfiguration; | ||
javascript?: PartialJavascriptConfiguration; | ||
/** | ||
* Specific configuration for the Json language | ||
*/ | ||
json?: JsonConfiguration; | ||
json?: PartialJsonConfiguration; | ||
/** | ||
@@ -1122,3 +1122,3 @@ * Specific configuration for the Json language | ||
/** | ||
* Usually, the definition in the standard library is more precise than what people come up with or the used constant exceeds the maximum precision of the number type. | ||
* Use standard constants instead of approximated literals. | ||
*/ | ||
@@ -1125,0 +1125,0 @@ noApproximativeNumericConstant?: RuleConfiguration; |
@@ -1,1 +0,1 @@ | ||
{"name":"@biomejs/wasm-nodejs","collaborators":["Biome Developers and Contributors"],"description":"WebAssembly bindings to the Biome workspace API","version":"1.5.3-nightly.24fcf19","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"]} | ||
{"name":"@biomejs/wasm-nodejs","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"],"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
8562102