UNPKG

@fenge/eslint-config

Version:

A super strict eslint config for linting js/ts/package.json.

12 lines 583 B
import type { Linter } from "eslint"; export interface BaseOptions { linterOptions?: Linter.LinterOptions; /** * The key represents the file pattern to block. * If the value is `false`, files matching the key pattern are allowed. * If the value is a `string`, files matching the key pattern are blocked, and the string indicates the preferred filename pattern. */ blockedFiles?: Record<string, string | false>; } export declare function base(options: BaseOptions, enabled: Set<"js" | "ts" | "pkg">): Linter.Config[]; //# sourceMappingURL=base.d.ts.map