@d-kuehn/eslint-config 1.0.4 → 1.0.5
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,9 +101,9 @@ The Typescript plugin further accept setting some
|
|
|
101
101
|
```ts
|
|
102
102
|
interface Options {
|
|
103
103
|
ignores?: string[];
|
|
104
|
-
plugins?: Record<string, TSESLint.
|
|
104
|
+
plugins?: Record<string, TSESLint.Linter.Plugin>;
|
|
105
105
|
rules?: Record<string, TSESLint.FlatConfig.RuleEntry>;
|
|
106
|
-
languageOptions?:
|
|
106
|
+
languageOptions?: Linter.LanguageOptions;
|
|
107
107
|
}
|
|
108
108
|
```
|
|
109
109
|
|
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import { TSESLint } from '@typescript-eslint/utils';
|
|
|
4
4
|
type Awaitable<T> = Promise<T> | T;
|
|
5
5
|
interface Options {
|
|
6
6
|
ignores?: string[];
|
|
7
|
-
plugins?: Record<string, TSESLint.
|
|
8
|
-
rules?: Record<string, TSESLint.
|
|
7
|
+
plugins?: Record<string, TSESLint.Linter.Plugin>;
|
|
8
|
+
rules?: Record<string, TSESLint.SharedConfig.RuleEntry>;
|
|
9
9
|
}
|
|
10
10
|
interface OptionsTypescript extends Options {
|
|
11
11
|
languageOptions?: Linter.LanguageOptions;
|