18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
|
|
import type {ESLint, Linter} from 'eslint';
|
||
|
|
|
||
|
|
declare const eslintPluginUnicorn: ESLint.Plugin & {
|
||
|
|
configs: {
|
||
|
|
recommended: Linter.FlatConfig;
|
||
|
|
unopinionated: Linter.FlatConfig;
|
||
|
|
all: Linter.FlatConfig;
|
||
|
|
|
||
|
|
/** @deprecated Use `all` instead. The `flat/` prefix is no longer needed. */
|
||
|
|
'flat/all': Linter.FlatConfig;
|
||
|
|
|
||
|
|
/** @deprecated Use `recommended` instead. The `flat/` prefix is no longer needed. */
|
||
|
|
'flat/recommended': Linter.FlatConfig;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default eslintPluginUnicorn;
|