@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 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.FlatConfig.Plugin | TSESLint.FlatConfig.Plugins>;
104
+ plugins?: Record<string, TSESLint.Linter.Plugin>;
105
105
  rules?: Record<string, TSESLint.FlatConfig.RuleEntry>;
106
- languageOptions?: TSESLint.FlatConfig.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.FlatConfig.Plugin | TSESLint.FlatConfig.Plugins>;
8
- rules?: Record<string, TSESLint.FlatConfig.RuleEntry>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-kuehn/eslint-config",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {