tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
10 lines (9 loc) • 395 B
TypeScript
import { RuleMerger } from "../ruleMerger";
/**
* https://eslint.org/docs/rules/no-empty arguments merger.
*
* The only (and optional) option is `{ allowEmptyCatch: boolean }` which defaults to `{ allowEmptyCatch: false }`.
*
* Since the `false` case is stricter this sould only set `{ allowEmptyCatch: true }` when both inputs enable it.
*/
export declare const mergeNoEmpty: RuleMerger;