@manuth/eslint-plugin-typescript
Version:
A set of personal eslint-rulesets for TypeScript-projects
23 lines (22 loc) • 459 B
text/typescript
import { Linter } from "eslint";
/**
* Represents an override configuration.
*/
export interface IConfigurationOverride {
/**
* The name of the configuration.
*/
name: string;
/**
* The glob patterns of the files to target.
*/
include: string[];
/**
* The glob patterns to exclude.
*/
exclude?: string[];
/**
* The configuration of the rules.
*/
config: Partial<Linter.RulesRecord>;
}