@schemastore/tombi 1.0.1 → 1.0.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/README.md +1 -1
- package/index.d.ts +3 -12
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -306,19 +306,10 @@ export type FilesOptionsToOverride = FilesOptionsToOverride1;
|
|
|
306
306
|
* @minItems 1
|
|
307
307
|
*/
|
|
308
308
|
export type FilePatternsToInclude1 = [string, ...string[]];
|
|
309
|
-
/**
|
|
310
|
-
* The file match pattern to exclude from formatting and linting.
|
|
311
|
-
* Supports glob pattern.
|
|
312
|
-
*
|
|
313
|
-
* @minItems 1
|
|
314
|
-
*/
|
|
315
|
-
export type FilePatternsToExclude1 = [string, ...string[]] | null;
|
|
316
309
|
export type FormatOptionsToOverride = OverrideFormatOptions | null;
|
|
317
310
|
export type FormatEnabled = BoolDefaultTrue | null;
|
|
318
|
-
export type FormatRules2 = FormatRules1 | null;
|
|
319
311
|
export type LintOptionsToOverride = OverrideLintOptions | null;
|
|
320
312
|
export type LintEnabled = BoolDefaultTrue | null;
|
|
321
|
-
export type LintRules2 = LintRules1 | null;
|
|
322
313
|
|
|
323
314
|
/**
|
|
324
315
|
* **Tombi** (鳶 `/toɴbi/`) is a toolkit for TOML; providing a formatter/linter and language server.
|
|
@@ -428,13 +419,13 @@ export interface OverrideConfigItem {
|
|
|
428
419
|
}
|
|
429
420
|
export interface FilesOptionsToOverride1 {
|
|
430
421
|
include: FilePatternsToInclude1;
|
|
431
|
-
exclude?:
|
|
422
|
+
exclude?: FilePatternsToExclude;
|
|
432
423
|
}
|
|
433
424
|
export interface OverrideFormatOptions {
|
|
434
425
|
enabled?: FormatEnabled;
|
|
435
|
-
rules?:
|
|
426
|
+
rules?: FormatRules;
|
|
436
427
|
}
|
|
437
428
|
export interface OverrideLintOptions {
|
|
438
429
|
enabled?: LintEnabled;
|
|
439
|
-
rules?:
|
|
430
|
+
rules?: LintRules;
|
|
440
431
|
}
|
package/package.json
CHANGED