tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
16 lines (15 loc) • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoRedundantJump = void 0;
const convertNoRedundantJump = () => {
return {
rules: [
{
ruleName: "sonarjs/no-redundant-jump",
},
],
plugins: ["sonarjs"],
};
};
exports.convertNoRedundantJump = convertNoRedundantJump;
//# sourceMappingURL=no-redundant-jump.js.map