Files
tools/configs/eslint/src/index.ts
T
robonen d6c6a62557 chore(eslint): add shared tests preset and relax no-console
A 'tests' preset exempts *.test/*.spec/*.bench files from the type-boundary rules
(no-explicit-any, no-unused-vars, no-new-array, no-extraneous-class); base now
allows intentional console.warn/error (stray console.log still flagged).
2026-06-15 16:54:50 +07:00

14 lines
281 B
TypeScript

/* Compose */
export { compose } from './compose';
/* Presets */
export { base, ignores, typescript, vue, vitest, tests, imports, node, stylistic, regexp } from './presets';
/* Types */
export type {
FlatConfig,
FlatConfigArray,
FlatConfigInput,
Rules,
} from './types';