We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Linter.FlatConfig
Linter.Config
1 parent 4956a6b commit 609d487Copy full SHA for 609d487
index.d.ts
@@ -2,15 +2,15 @@ import type {ESLint, Linter} from 'eslint';
2
3
declare const eslintPluginUnicorn: ESLint.Plugin & {
4
configs: {
5
- recommended: Linter.FlatConfig;
6
- unopinionated: Linter.FlatConfig;
7
- all: Linter.FlatConfig;
+ recommended: Linter.Config;
+ unopinionated: Linter.Config;
+ all: Linter.Config;
8
9
/** @deprecated Use `all` instead. The `flat/` prefix is no longer needed. */
10
- 'flat/all': Linter.FlatConfig;
+ 'flat/all': Linter.Config;
11
12
/** @deprecated Use `recommended` instead. The `flat/` prefix is no longer needed. */
13
- 'flat/recommended': Linter.FlatConfig;
+ 'flat/recommended': Linter.Config;
14
};
15
16
0 commit comments