aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/ruleLoader.d.ts
blob: 0ce93785efbda6803e831cd584cd0a1b0bad954d (plain)
1
2
3
import { IOptions, IRule, RuleConstructor } from "./language/rule/rule";
export declare function loadRules(ruleOptionsList: IOptions[], rulesDirectories?: string | string[], isJs?: boolean): IRule[];
export declare function findRule(name: string, rulesDirectories?: string | string[]): RuleConstructor | undefined;