1 2 3 4 5 6 7 8 9 10 11import type { Linter } from 'eslint'; export type { Linter }; export type Config = Linter.Config; export type FlatConfig = Config[]; declare const flatConfig: FlatConfig; export default flatConfig;
1 2 3 4 5 6 7 8 9 10 11
import type { Linter } from 'eslint'; export type { Linter }; export type Config = Linter.Config; export type FlatConfig = Config[]; declare const flatConfig: FlatConfig; export default flatConfig;