d6c6a62557
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).
14 lines
281 B
TypeScript
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';
|