UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

8 lines (7 loc) 183 B
/** * Merges two ESLint rule result outputs to a single result. */ export type RuleMerger = ( existingOptions: any[] | undefined, newOptions: any[] | undefined, ) => any[];