@kazupon/eslint-config 0.25.0 → 0.26.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.d.ts +31 -10
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -14115,18 +14115,39 @@ interface TypeScriptOptions {
|
|
|
14115
14115
|
parserOptions?: TypeScriptParserOptions;
|
|
14116
14116
|
}
|
|
14117
14117
|
/**
|
|
14118
|
-
* @see https://typescript-eslint.io/
|
|
14118
|
+
* @see https://typescript-eslint.io/packages/parser/#configuration
|
|
14119
14119
|
*/
|
|
14120
14120
|
interface TypeScriptParserOptions {
|
|
14121
|
-
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14127
|
-
|
|
14128
|
-
|
|
14121
|
+
cacheLifetime?: {
|
|
14122
|
+
glob?: number | 'Infinity';
|
|
14123
|
+
};
|
|
14124
|
+
disallowAutomaticSingleRunInference?: boolean;
|
|
14125
|
+
ecmaFeatures?: {
|
|
14126
|
+
jsx?: boolean;
|
|
14127
|
+
globalReturn?: boolean;
|
|
14128
|
+
};
|
|
14129
|
+
ecmaVersion?: number | 'latest';
|
|
14130
|
+
emitDecoratorMetadata?: boolean;
|
|
14131
|
+
experimentalDecorators?: boolean;
|
|
14132
|
+
isolatedDeclarations?: boolean;
|
|
14133
|
+
extraFileExtensions?: string[];
|
|
14134
|
+
jsDocParsingMode?: 'all' | 'none' | 'type-info';
|
|
14135
|
+
jsxFragmentName?: string | null;
|
|
14136
|
+
jsxPragma?: string | null;
|
|
14137
|
+
lib?: string[];
|
|
14138
|
+
programs?: undefined[];
|
|
14139
|
+
project?: string | string[] | boolean | null;
|
|
14140
|
+
projectFolderIgnoreList?: string[];
|
|
14141
|
+
projectService?: boolean | TypeScriptProjectServiceOptions;
|
|
14129
14142
|
tsconfigRootDir?: string;
|
|
14143
|
+
warnOnUnsupportedTypeScriptVersion?: boolean;
|
|
14144
|
+
}
|
|
14145
|
+
/**
|
|
14146
|
+
* @see https://typescript-eslint.io/packages/parser/#projectservice
|
|
14147
|
+
*/
|
|
14148
|
+
interface TypeScriptProjectServiceOptions {
|
|
14149
|
+
allowDefaultProject?: string[];
|
|
14150
|
+
defaultProject?: string;
|
|
14130
14151
|
}
|
|
14131
14152
|
/**
|
|
14132
14153
|
* `typescript-eslint` and overrides configuration options
|
|
@@ -14303,4 +14324,4 @@ interface YmlOptions {
|
|
|
14303
14324
|
declare function yml(options?: YmlOptions & OverridesOptions<YmlRules>): Promise<Linter.Config[]>;
|
|
14304
14325
|
declare const yaml: typeof yml;
|
|
14305
14326
|
|
|
14306
|
-
export { type CommentsOptions, type CommentsRules, type CssOptions, type CssRules, type ImportsOptions, type ImportsRules, type JavaScriptOptions, type JavascriptRules, type JsDocumentOptions, type JsdocRules, type JsoncOptions, type JsoncRules, type MarkdownOptions, type MarkdownRules, type OverridesOptions, type PrettierOptions, type PrettierRules, type PromiseOptions, type PromiseRules, type ReactOptions, type ReactRules, type RegexpOptions, type RegexpRules, type SvelteRules, type SvelteScriptOptions, type TomlOptions, type TomlRules, type TypeScriptOptions, type TypeScriptParserOptions, type TypescriptRules, type UnicornOptions, type UnicornRules, type VitestOptions, type VitestRules, type VueRules, type VueScriptOptions, type YmlOptions, type YmlRules, comments, css, defineConfig, imports, javascript, jsdoc, jsonc, markdown, md, prettier, promise, react, regexp, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
|
|
14327
|
+
export { type CommentsOptions, type CommentsRules, type CssOptions, type CssRules, type ImportsOptions, type ImportsRules, type JavaScriptOptions, type JavascriptRules, type JsDocumentOptions, type JsdocRules, type JsoncOptions, type JsoncRules, type MarkdownOptions, type MarkdownRules, type OverridesOptions, type PrettierOptions, type PrettierRules, type PromiseOptions, type PromiseRules, type ReactOptions, type ReactRules, type RegexpOptions, type RegexpRules, type SvelteRules, type SvelteScriptOptions, type TomlOptions, type TomlRules, type TypeScriptOptions, type TypeScriptParserOptions, type TypeScriptProjectServiceOptions, type TypescriptRules, type UnicornOptions, type UnicornRules, type VitestOptions, type VitestRules, type VueRules, type VueScriptOptions, type YmlOptions, type YmlRules, comments, css, defineConfig, imports, javascript, jsdoc, jsonc, markdown, md, prettier, promise, react, regexp, svelte, toml, typescript, unicorn, vitest, vue, yaml, yml };
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kazupon/eslint-config",
|
|
3
3
|
"description": "ESLint config for @kazupon",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.26.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "kawakazu80@gmail.com",
|
|
7
7
|
"name": "kazuya kawaguchi"
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
"bumpp": "^10.1.0",
|
|
172
172
|
"eslint": "^9.22.0",
|
|
173
173
|
"eslint-config-prettier": "^10.1.1",
|
|
174
|
-
"eslint-import-resolver-typescript": "^
|
|
174
|
+
"eslint-import-resolver-typescript": "^4.0.0",
|
|
175
175
|
"eslint-plugin-import": "^2.31.0",
|
|
176
176
|
"eslint-plugin-jsdoc": "^50.6.8",
|
|
177
177
|
"eslint-plugin-jsonc": "^2.19.1",
|