@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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +3 -12
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,5 +10,5 @@ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/m
10
10
 
11
11
  ## Additional Details
12
12
 
13
- * Last updated: Sun, Mar 15, 2026, 21:50:33 GMT
13
+ * Last updated: Fri, Mar 27, 2026, 22:09:20 GMT
14
14
  * Dependencies: none
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?: FilePatternsToExclude1;
422
+ exclude?: FilePatternsToExclude;
432
423
  }
433
424
  export interface OverrideFormatOptions {
434
425
  enabled?: FormatEnabled;
435
- rules?: FormatRules2;
426
+ rules?: FormatRules;
436
427
  }
437
428
  export interface OverrideLintOptions {
438
429
  enabled?: LintEnabled;
439
- rules?: LintRules2;
430
+ rules?: LintRules;
440
431
  }
package/package.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "private": false,
7
7
  "repository": "https://github.com/ffflorian/schemastore-updater",
8
8
  "types": "index.d.ts",
9
- "version": "1.0.1"
9
+ "version": "1.0.2"
10
10
  }