tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
16 lines (15 loc) • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoArg = void 0;
const convertNoArg = () => {
return {
notices: ["`arguments.callee` will now also be banned."],
rules: [
{
ruleName: "no-caller",
},
],
};
};
exports.convertNoArg = convertNoArg;
//# sourceMappingURL=no-arg.js.map