UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

17 lines (16 loc) 529 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertRxjsNoUnsafeCatch = void 0; const convertRxjsNoUnsafeCatch = ({ ruleArguments }) => { return { rules: [ { ...(ruleArguments.length !== 0 && { ruleArguments }), ruleName: "rxjs/no-unsafe-catch", }, ], plugins: ["eslint-plugin-rxjs"], }; }; exports.convertRxjsNoUnsafeCatch = convertRxjsNoUnsafeCatch; //# sourceMappingURL=rxjs-no-unsafe-catch.js.map