UNPKG

@cmkk/eslint-config

Version:
16 lines (12 loc) 398 B
import { Linter } from 'eslint'; type Config = Linter.Config; interface CreateEslintConfigOptions extends Linter.Config { javascript?: boolean; jsx?: boolean; react?: boolean; typescript?: boolean; prettier?: boolean; node?: boolean; } declare function createEslintConfig(options?: CreateEslintConfigOptions): Promise<Config[]>; export { createEslintConfig as default };