@lntvow/eslint-config 9.16.2 → 9.16.4

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/dist/index.d.ts CHANGED
@@ -16005,6 +16005,11 @@ interface FlatGitignoreOptions {
16005
16005
  * @default false
16006
16006
  */
16007
16007
  root?: boolean;
16008
+ /**
16009
+ * Throw an error if gitignore file not found.
16010
+ * @default true
16011
+ */
16012
+ strict?: boolean;
16008
16013
  }
16009
16014
  interface OptionsConfig extends OptionsComponentExts {
16010
16015
  /**
@@ -16087,7 +16092,6 @@ declare function test(options?: OptionsOverrides): Promise<TypedFlatConfigItem[]
16087
16092
  declare function typescript(options?: OptionsTypeScript & OptionsComponentExts): Promise<TypedFlatConfigItem[]>;
16088
16093
 
16089
16094
  declare function vue(options?: OptionsVue): Promise<TypedFlatConfigItem[]>;
16090
- declare function getVueVersion(): number;
16091
16095
 
16092
16096
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
16093
16097
  declare const GLOB_SRC = "**/*.?([cm])[jt]s?(x)";
@@ -16120,4 +16124,4 @@ declare const GLOB_EXCLUDE: string[];
16120
16124
 
16121
16125
  declare function lntvow(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: Awaitable<TypedFlatConfigItem>[]): FlatConfigComposer<TypedFlatConfigItem, ConfigNames>;
16122
16126
 
16123
- export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_XML, GLOB_YAML, custom, disables, getVueVersion, gitignore, ignores, imports, javascript, lntvow, notInRecommendedRules, prettier, regexp, renameRules, stylistic, test, typescript, vue };
16127
+ export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_XML, GLOB_YAML, custom, disables, gitignore, ignores, imports, javascript, lntvow, notInRecommendedRules, prettier, regexp, renameRules, stylistic, test, typescript, vue };