@ntnyq/eslint-config 3.5.1 → 3.6.0
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.cjs +306 -85
- package/dist/index.d.cts +32 -19
- package/dist/index.d.ts +32 -19
- package/dist/index.js +306 -85
- package/package.json +10 -8
package/dist/index.d.cts
CHANGED
|
@@ -7,6 +7,7 @@ import { Linter } from 'eslint';
|
|
|
7
7
|
import { ConfigWithExtends } from 'typescript-eslint';
|
|
8
8
|
export { plugin as pluginTypeScript, configs as typescriptConfigs } from 'typescript-eslint';
|
|
9
9
|
import { RequiredOptions, BuiltInParserName } from 'prettier';
|
|
10
|
+
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
10
11
|
import * as eslintPluginRegexp from 'eslint-plugin-regexp';
|
|
11
12
|
export { eslintPluginRegexp as pluginRegexp };
|
|
12
13
|
export { default as pluginNode } from 'eslint-plugin-n';
|
|
@@ -9872,6 +9873,7 @@ type JsdocInformativeDocs = [] | [
|
|
|
9872
9873
|
];
|
|
9873
9874
|
type JsdocLinesBeforeBlock = [] | [
|
|
9874
9875
|
{
|
|
9876
|
+
checkBlockStarts?: boolean;
|
|
9875
9877
|
excludedTags?: string[];
|
|
9876
9878
|
ignoreSameLine?: boolean;
|
|
9877
9879
|
lines?: number;
|
|
@@ -12159,9 +12161,13 @@ type PerfectionistSortObjectTypes = [] | [
|
|
|
12159
12161
|
];
|
|
12160
12162
|
type PerfectionistSortObjects = [] | [
|
|
12161
12163
|
{
|
|
12164
|
+
destructuredObjects?: (boolean | {
|
|
12165
|
+
groups?: boolean;
|
|
12166
|
+
});
|
|
12162
12167
|
ignorePattern?: string[];
|
|
12163
12168
|
partitionByComment?: (string[] | boolean | string);
|
|
12164
12169
|
destructureOnly?: boolean;
|
|
12170
|
+
objectDeclarations?: boolean;
|
|
12165
12171
|
styledComponents?: boolean;
|
|
12166
12172
|
partitionByNewLine?: boolean;
|
|
12167
12173
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
@@ -14687,7 +14693,7 @@ interface OptionsExtensions {
|
|
|
14687
14693
|
*/
|
|
14688
14694
|
type OptionsFeatures = {
|
|
14689
14695
|
/**
|
|
14690
|
-
*
|
|
14696
|
+
* Enable typescript support
|
|
14691
14697
|
*/
|
|
14692
14698
|
typescript?: boolean;
|
|
14693
14699
|
};
|
|
@@ -14707,7 +14713,7 @@ type ConfigGitIgnoreOptions = Omit<FlatGitignoreOptions, 'strict'> & {
|
|
|
14707
14713
|
strict?: boolean;
|
|
14708
14714
|
};
|
|
14709
14715
|
type ConfigCommandOptions = ESLintPluginCommandOptions;
|
|
14710
|
-
interface ConfigJsdocOptions extends OptionsOverrides {
|
|
14716
|
+
interface ConfigJsdocOptions extends OptionsOverrides, OptionsFeatures {
|
|
14711
14717
|
}
|
|
14712
14718
|
interface ConfigUnoCSSOptions extends OptionsOverrides {
|
|
14713
14719
|
/**
|
|
@@ -14857,6 +14863,24 @@ interface ConfigTestOptions extends OptionsOverrides {
|
|
|
14857
14863
|
*/
|
|
14858
14864
|
overridesVitestRules?: TypedConfigItem['rules'];
|
|
14859
14865
|
}
|
|
14866
|
+
interface ConfigSpecialsOptions {
|
|
14867
|
+
/**
|
|
14868
|
+
* Overrides scripts rules
|
|
14869
|
+
*/
|
|
14870
|
+
overridesScriptsRules?: TypedConfigItem['rules'];
|
|
14871
|
+
/**
|
|
14872
|
+
* Overrides cli rules
|
|
14873
|
+
*/
|
|
14874
|
+
overridesCliRules?: TypedConfigItem['rules'];
|
|
14875
|
+
/**
|
|
14876
|
+
* Overrides user scripts rules
|
|
14877
|
+
*/
|
|
14878
|
+
overridesUserScriptsRules?: TypedConfigItem['rules'];
|
|
14879
|
+
/**
|
|
14880
|
+
* More special case configs
|
|
14881
|
+
*/
|
|
14882
|
+
specialCaseConfigs?: TypedConfigItem[];
|
|
14883
|
+
}
|
|
14860
14884
|
interface ConfigFormatOptions {
|
|
14861
14885
|
/**
|
|
14862
14886
|
* Enable formatter support for css, less, scss, sass and etc.
|
|
@@ -14912,6 +14936,7 @@ interface ConfigOptions extends ConfigOptionsInternal, OptionsExtensions {
|
|
|
14912
14936
|
command?: ConfigCommandOptions;
|
|
14913
14937
|
comments?: ConfigCommentsOptions;
|
|
14914
14938
|
javascript?: ConfigJavaScriptOptions;
|
|
14939
|
+
specials?: ConfigSpecialsOptions;
|
|
14915
14940
|
sort?: boolean | ConfigSortOptions;
|
|
14916
14941
|
gitignore?: boolean | ConfigGitIgnoreOptions;
|
|
14917
14942
|
stylistic?: boolean | ConfigStylisticOptions;
|
|
@@ -14945,7 +14970,7 @@ type PrettierOptions = Partial<Pick<RequiredOptions, 'semi' | 'useTabs' | 'tabWi
|
|
|
14945
14970
|
/**
|
|
14946
14971
|
* Config factory
|
|
14947
14972
|
*/
|
|
14948
|
-
declare function defineESLintConfig(options?: ConfigOptions, ...userConfigs: Awaitable<TypedConfigItem | TypedConfigItem[] | ESLintConfig[]>[]):
|
|
14973
|
+
declare function defineESLintConfig(options?: ConfigOptions, ...userConfigs: Awaitable<TypedConfigItem | TypedConfigItem[] | ESLintConfig[]>[]): FlatConfigComposer<TypedConfigItem, ConfigNames>;
|
|
14949
14974
|
|
|
14950
14975
|
/**
|
|
14951
14976
|
* @file globs constants
|
|
@@ -15014,24 +15039,12 @@ declare function resolveSubOptions<K extends keyof ConfigOptions>(options: Confi
|
|
|
15014
15039
|
|
|
15015
15040
|
declare function mergePrettierOptions(options?: PrettierOptions, overrides?: PrettierOptions): PrettierOptions;
|
|
15016
15041
|
|
|
15017
|
-
/**
|
|
15018
|
-
* @file ESLint parsers
|
|
15019
|
-
*/
|
|
15020
|
-
|
|
15021
15042
|
/**
|
|
15022
15043
|
* With meta
|
|
15023
15044
|
*/
|
|
15024
15045
|
declare const parserTypeScript: {
|
|
15025
|
-
meta?: {
|
|
15026
|
-
|
|
15027
|
-
version?: string | undefined;
|
|
15028
|
-
};
|
|
15029
|
-
parseForESLint(text: string, options?: unknown): {
|
|
15030
|
-
ast: unknown;
|
|
15031
|
-
scopeManager?: unknown;
|
|
15032
|
-
services?: unknown;
|
|
15033
|
-
visitorKeys?: unknown;
|
|
15034
|
-
};
|
|
15046
|
+
meta?: { [K in keyof _typescript_eslint_utils_ts_eslint.Parser.ParserMeta]?: _typescript_eslint_utils_ts_eslint.Parser.ParserMeta[K] | undefined; };
|
|
15047
|
+
parseForESLint(text: string, options?: unknown): { [k in keyof _typescript_eslint_utils_ts_eslint.Parser.ParseResult]: unknown; };
|
|
15035
15048
|
};
|
|
15036
15049
|
|
|
15037
15050
|
/**
|
|
@@ -15082,7 +15095,7 @@ declare const imports: (options?: ConfigImportsOptions) => TypedConfigItem[];
|
|
|
15082
15095
|
|
|
15083
15096
|
declare const unicorn: (options?: ConfigUnicornOptions) => TypedConfigItem[];
|
|
15084
15097
|
|
|
15085
|
-
declare const specials: () => TypedConfigItem[];
|
|
15098
|
+
declare const specials: (options?: ConfigSpecialsOptions) => TypedConfigItem[];
|
|
15086
15099
|
|
|
15087
15100
|
declare const comments: (options?: ConfigCommentsOptions) => TypedConfigItem[];
|
|
15088
15101
|
|
|
@@ -15110,4 +15123,4 @@ declare const unusedImports: (options?: ConfigUnusedImportsOptions) => TypedConf
|
|
|
15110
15123
|
*/
|
|
15111
15124
|
declare const DEFAULT_PRETTIER_OPTIONS: PrettierOptions;
|
|
15112
15125
|
|
|
15113
|
-
export { type Arrayable, type Awaitable, type ConfigAntfuOptions, type ConfigCommandOptions, type ConfigCommentsOptions, type ConfigFormatOptions, type ConfigGitHubActionOptions, type ConfigGitIgnoreOptions, type ConfigIgnoresOptions, type ConfigImportsOptions, type ConfigJavaScriptOptions, type ConfigJsdocOptions, type ConfigJsoncOptions, type ConfigMarkdownOptions, type ConfigNames, type ConfigNodeOptions, type ConfigNtnyqOptions, type ConfigOptions, type ConfigPerfectionistOptions, type ConfigPrettierOptions, type ConfigRegexpOptions, type ConfigSortOptions, type ConfigStylisticOptions, type ConfigTestOptions, type ConfigTomlOptions, type ConfigTypeScriptOptions, type ConfigUnicornOptions, type ConfigUnoCSSOptions, type ConfigUnusedImportsOptions, type ConfigVueOptions, type ConfigYmlOptions, DEFAULT_PRETTIER_OPTIONS, type ESLintConfig, type ESLintParser, type ESLintParserOptions, type ESLintProcessor, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type InteropModuleDefault, type LiteralUnion, type OptionsExtensions, type OptionsFeatures, type OptionsFiles, type OptionsOverrides, type PerfectionistSortOrder, type PerfectionistSortType, type PrettierOptions, type Pretty, type ResolvedOptions, type RuleOptions, type TSESLintParserOptions, type TypedConfigItem, antfu, command, comments, defineESLintConfig, format, getOverrides, githubAction, gitignore, hasTypeScript, hasUnoCSS, hasVitest, hasVue, ignores, imports, interopDefault, javascript, jsdoc, jsonc, jsx, loadPlugin, markdown, mergePrettierOptions, node, ntnyq, parserPlain, parserTypeScript, perfectionist, prettier, regexp, resolveSubOptions, sort, specials, stylistic, test, toArray, toml, typescript, unicorn, unocss, unusedImports, vitest, vue, yml };
|
|
15126
|
+
export { type Arrayable, type Awaitable, type ConfigAntfuOptions, type ConfigCommandOptions, type ConfigCommentsOptions, type ConfigFormatOptions, type ConfigGitHubActionOptions, type ConfigGitIgnoreOptions, type ConfigIgnoresOptions, type ConfigImportsOptions, type ConfigJavaScriptOptions, type ConfigJsdocOptions, type ConfigJsoncOptions, type ConfigMarkdownOptions, type ConfigNames, type ConfigNodeOptions, type ConfigNtnyqOptions, type ConfigOptions, type ConfigPerfectionistOptions, type ConfigPrettierOptions, type ConfigRegexpOptions, type ConfigSortOptions, type ConfigSpecialsOptions, type ConfigStylisticOptions, type ConfigTestOptions, type ConfigTomlOptions, type ConfigTypeScriptOptions, type ConfigUnicornOptions, type ConfigUnoCSSOptions, type ConfigUnusedImportsOptions, type ConfigVueOptions, type ConfigYmlOptions, DEFAULT_PRETTIER_OPTIONS, type ESLintConfig, type ESLintParser, type ESLintParserOptions, type ESLintProcessor, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type InteropModuleDefault, type LiteralUnion, type OptionsExtensions, type OptionsFeatures, type OptionsFiles, type OptionsOverrides, type PerfectionistSortOrder, type PerfectionistSortType, type PrettierOptions, type Pretty, type ResolvedOptions, type RuleOptions, type TSESLintParserOptions, type TypedConfigItem, antfu, command, comments, defineESLintConfig, format, getOverrides, githubAction, gitignore, hasTypeScript, hasUnoCSS, hasVitest, hasVue, ignores, imports, interopDefault, javascript, jsdoc, jsonc, jsx, loadPlugin, markdown, mergePrettierOptions, node, ntnyq, parserPlain, parserTypeScript, perfectionist, prettier, regexp, resolveSubOptions, sort, specials, stylistic, test, toArray, toml, typescript, unicorn, unocss, unusedImports, vitest, vue, yml };
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { Linter } from 'eslint';
|
|
|
7
7
|
import { ConfigWithExtends } from 'typescript-eslint';
|
|
8
8
|
export { plugin as pluginTypeScript, configs as typescriptConfigs } from 'typescript-eslint';
|
|
9
9
|
import { RequiredOptions, BuiltInParserName } from 'prettier';
|
|
10
|
+
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
10
11
|
import * as eslintPluginRegexp from 'eslint-plugin-regexp';
|
|
11
12
|
export { eslintPluginRegexp as pluginRegexp };
|
|
12
13
|
export { default as pluginNode } from 'eslint-plugin-n';
|
|
@@ -9872,6 +9873,7 @@ type JsdocInformativeDocs = [] | [
|
|
|
9872
9873
|
];
|
|
9873
9874
|
type JsdocLinesBeforeBlock = [] | [
|
|
9874
9875
|
{
|
|
9876
|
+
checkBlockStarts?: boolean;
|
|
9875
9877
|
excludedTags?: string[];
|
|
9876
9878
|
ignoreSameLine?: boolean;
|
|
9877
9879
|
lines?: number;
|
|
@@ -12159,9 +12161,13 @@ type PerfectionistSortObjectTypes = [] | [
|
|
|
12159
12161
|
];
|
|
12160
12162
|
type PerfectionistSortObjects = [] | [
|
|
12161
12163
|
{
|
|
12164
|
+
destructuredObjects?: (boolean | {
|
|
12165
|
+
groups?: boolean;
|
|
12166
|
+
});
|
|
12162
12167
|
ignorePattern?: string[];
|
|
12163
12168
|
partitionByComment?: (string[] | boolean | string);
|
|
12164
12169
|
destructureOnly?: boolean;
|
|
12170
|
+
objectDeclarations?: boolean;
|
|
12165
12171
|
styledComponents?: boolean;
|
|
12166
12172
|
partitionByNewLine?: boolean;
|
|
12167
12173
|
specialCharacters?: ("remove" | "trim" | "keep");
|
|
@@ -14687,7 +14693,7 @@ interface OptionsExtensions {
|
|
|
14687
14693
|
*/
|
|
14688
14694
|
type OptionsFeatures = {
|
|
14689
14695
|
/**
|
|
14690
|
-
*
|
|
14696
|
+
* Enable typescript support
|
|
14691
14697
|
*/
|
|
14692
14698
|
typescript?: boolean;
|
|
14693
14699
|
};
|
|
@@ -14707,7 +14713,7 @@ type ConfigGitIgnoreOptions = Omit<FlatGitignoreOptions, 'strict'> & {
|
|
|
14707
14713
|
strict?: boolean;
|
|
14708
14714
|
};
|
|
14709
14715
|
type ConfigCommandOptions = ESLintPluginCommandOptions;
|
|
14710
|
-
interface ConfigJsdocOptions extends OptionsOverrides {
|
|
14716
|
+
interface ConfigJsdocOptions extends OptionsOverrides, OptionsFeatures {
|
|
14711
14717
|
}
|
|
14712
14718
|
interface ConfigUnoCSSOptions extends OptionsOverrides {
|
|
14713
14719
|
/**
|
|
@@ -14857,6 +14863,24 @@ interface ConfigTestOptions extends OptionsOverrides {
|
|
|
14857
14863
|
*/
|
|
14858
14864
|
overridesVitestRules?: TypedConfigItem['rules'];
|
|
14859
14865
|
}
|
|
14866
|
+
interface ConfigSpecialsOptions {
|
|
14867
|
+
/**
|
|
14868
|
+
* Overrides scripts rules
|
|
14869
|
+
*/
|
|
14870
|
+
overridesScriptsRules?: TypedConfigItem['rules'];
|
|
14871
|
+
/**
|
|
14872
|
+
* Overrides cli rules
|
|
14873
|
+
*/
|
|
14874
|
+
overridesCliRules?: TypedConfigItem['rules'];
|
|
14875
|
+
/**
|
|
14876
|
+
* Overrides user scripts rules
|
|
14877
|
+
*/
|
|
14878
|
+
overridesUserScriptsRules?: TypedConfigItem['rules'];
|
|
14879
|
+
/**
|
|
14880
|
+
* More special case configs
|
|
14881
|
+
*/
|
|
14882
|
+
specialCaseConfigs?: TypedConfigItem[];
|
|
14883
|
+
}
|
|
14860
14884
|
interface ConfigFormatOptions {
|
|
14861
14885
|
/**
|
|
14862
14886
|
* Enable formatter support for css, less, scss, sass and etc.
|
|
@@ -14912,6 +14936,7 @@ interface ConfigOptions extends ConfigOptionsInternal, OptionsExtensions {
|
|
|
14912
14936
|
command?: ConfigCommandOptions;
|
|
14913
14937
|
comments?: ConfigCommentsOptions;
|
|
14914
14938
|
javascript?: ConfigJavaScriptOptions;
|
|
14939
|
+
specials?: ConfigSpecialsOptions;
|
|
14915
14940
|
sort?: boolean | ConfigSortOptions;
|
|
14916
14941
|
gitignore?: boolean | ConfigGitIgnoreOptions;
|
|
14917
14942
|
stylistic?: boolean | ConfigStylisticOptions;
|
|
@@ -14945,7 +14970,7 @@ type PrettierOptions = Partial<Pick<RequiredOptions, 'semi' | 'useTabs' | 'tabWi
|
|
|
14945
14970
|
/**
|
|
14946
14971
|
* Config factory
|
|
14947
14972
|
*/
|
|
14948
|
-
declare function defineESLintConfig(options?: ConfigOptions, ...userConfigs: Awaitable<TypedConfigItem | TypedConfigItem[] | ESLintConfig[]>[]):
|
|
14973
|
+
declare function defineESLintConfig(options?: ConfigOptions, ...userConfigs: Awaitable<TypedConfigItem | TypedConfigItem[] | ESLintConfig[]>[]): FlatConfigComposer<TypedConfigItem, ConfigNames>;
|
|
14949
14974
|
|
|
14950
14975
|
/**
|
|
14951
14976
|
* @file globs constants
|
|
@@ -15014,24 +15039,12 @@ declare function resolveSubOptions<K extends keyof ConfigOptions>(options: Confi
|
|
|
15014
15039
|
|
|
15015
15040
|
declare function mergePrettierOptions(options?: PrettierOptions, overrides?: PrettierOptions): PrettierOptions;
|
|
15016
15041
|
|
|
15017
|
-
/**
|
|
15018
|
-
* @file ESLint parsers
|
|
15019
|
-
*/
|
|
15020
|
-
|
|
15021
15042
|
/**
|
|
15022
15043
|
* With meta
|
|
15023
15044
|
*/
|
|
15024
15045
|
declare const parserTypeScript: {
|
|
15025
|
-
meta?: {
|
|
15026
|
-
|
|
15027
|
-
version?: string | undefined;
|
|
15028
|
-
};
|
|
15029
|
-
parseForESLint(text: string, options?: unknown): {
|
|
15030
|
-
ast: unknown;
|
|
15031
|
-
scopeManager?: unknown;
|
|
15032
|
-
services?: unknown;
|
|
15033
|
-
visitorKeys?: unknown;
|
|
15034
|
-
};
|
|
15046
|
+
meta?: { [K in keyof _typescript_eslint_utils_ts_eslint.Parser.ParserMeta]?: _typescript_eslint_utils_ts_eslint.Parser.ParserMeta[K] | undefined; };
|
|
15047
|
+
parseForESLint(text: string, options?: unknown): { [k in keyof _typescript_eslint_utils_ts_eslint.Parser.ParseResult]: unknown; };
|
|
15035
15048
|
};
|
|
15036
15049
|
|
|
15037
15050
|
/**
|
|
@@ -15082,7 +15095,7 @@ declare const imports: (options?: ConfigImportsOptions) => TypedConfigItem[];
|
|
|
15082
15095
|
|
|
15083
15096
|
declare const unicorn: (options?: ConfigUnicornOptions) => TypedConfigItem[];
|
|
15084
15097
|
|
|
15085
|
-
declare const specials: () => TypedConfigItem[];
|
|
15098
|
+
declare const specials: (options?: ConfigSpecialsOptions) => TypedConfigItem[];
|
|
15086
15099
|
|
|
15087
15100
|
declare const comments: (options?: ConfigCommentsOptions) => TypedConfigItem[];
|
|
15088
15101
|
|
|
@@ -15110,4 +15123,4 @@ declare const unusedImports: (options?: ConfigUnusedImportsOptions) => TypedConf
|
|
|
15110
15123
|
*/
|
|
15111
15124
|
declare const DEFAULT_PRETTIER_OPTIONS: PrettierOptions;
|
|
15112
15125
|
|
|
15113
|
-
export { type Arrayable, type Awaitable, type ConfigAntfuOptions, type ConfigCommandOptions, type ConfigCommentsOptions, type ConfigFormatOptions, type ConfigGitHubActionOptions, type ConfigGitIgnoreOptions, type ConfigIgnoresOptions, type ConfigImportsOptions, type ConfigJavaScriptOptions, type ConfigJsdocOptions, type ConfigJsoncOptions, type ConfigMarkdownOptions, type ConfigNames, type ConfigNodeOptions, type ConfigNtnyqOptions, type ConfigOptions, type ConfigPerfectionistOptions, type ConfigPrettierOptions, type ConfigRegexpOptions, type ConfigSortOptions, type ConfigStylisticOptions, type ConfigTestOptions, type ConfigTomlOptions, type ConfigTypeScriptOptions, type ConfigUnicornOptions, type ConfigUnoCSSOptions, type ConfigUnusedImportsOptions, type ConfigVueOptions, type ConfigYmlOptions, DEFAULT_PRETTIER_OPTIONS, type ESLintConfig, type ESLintParser, type ESLintParserOptions, type ESLintProcessor, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type InteropModuleDefault, type LiteralUnion, type OptionsExtensions, type OptionsFeatures, type OptionsFiles, type OptionsOverrides, type PerfectionistSortOrder, type PerfectionistSortType, type PrettierOptions, type Pretty, type ResolvedOptions, type RuleOptions, type TSESLintParserOptions, type TypedConfigItem, antfu, command, comments, defineESLintConfig, format, getOverrides, githubAction, gitignore, hasTypeScript, hasUnoCSS, hasVitest, hasVue, ignores, imports, interopDefault, javascript, jsdoc, jsonc, jsx, loadPlugin, markdown, mergePrettierOptions, node, ntnyq, parserPlain, parserTypeScript, perfectionist, prettier, regexp, resolveSubOptions, sort, specials, stylistic, test, toArray, toml, typescript, unicorn, unocss, unusedImports, vitest, vue, yml };
|
|
15126
|
+
export { type Arrayable, type Awaitable, type ConfigAntfuOptions, type ConfigCommandOptions, type ConfigCommentsOptions, type ConfigFormatOptions, type ConfigGitHubActionOptions, type ConfigGitIgnoreOptions, type ConfigIgnoresOptions, type ConfigImportsOptions, type ConfigJavaScriptOptions, type ConfigJsdocOptions, type ConfigJsoncOptions, type ConfigMarkdownOptions, type ConfigNames, type ConfigNodeOptions, type ConfigNtnyqOptions, type ConfigOptions, type ConfigPerfectionistOptions, type ConfigPrettierOptions, type ConfigRegexpOptions, type ConfigSortOptions, type ConfigSpecialsOptions, type ConfigStylisticOptions, type ConfigTestOptions, type ConfigTomlOptions, type ConfigTypeScriptOptions, type ConfigUnicornOptions, type ConfigUnoCSSOptions, type ConfigUnusedImportsOptions, type ConfigVueOptions, type ConfigYmlOptions, DEFAULT_PRETTIER_OPTIONS, type ESLintConfig, type ESLintParser, type ESLintParserOptions, type ESLintProcessor, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type InteropModuleDefault, type LiteralUnion, type OptionsExtensions, type OptionsFeatures, type OptionsFiles, type OptionsOverrides, type PerfectionistSortOrder, type PerfectionistSortType, type PrettierOptions, type Pretty, type ResolvedOptions, type RuleOptions, type TSESLintParserOptions, type TypedConfigItem, antfu, command, comments, defineESLintConfig, format, getOverrides, githubAction, gitignore, hasTypeScript, hasUnoCSS, hasVitest, hasVue, ignores, imports, interopDefault, javascript, jsdoc, jsonc, jsx, loadPlugin, markdown, mergePrettierOptions, node, ntnyq, parserPlain, parserTypeScript, perfectionist, prettier, regexp, resolveSubOptions, sort, specials, stylistic, test, toArray, toml, typescript, unicorn, unocss, unusedImports, vitest, vue, yml };
|