tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
18 lines • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoBannedTerms = void 0;
const convertNoBannedTerms = () => {
return {
// This is mentioned in Architecture/Linters.md as a TSLint rule with two ESLint equivalents
rules: [
{
ruleName: "no-caller",
},
{
ruleName: "no-eval",
},
],
};
};
exports.convertNoBannedTerms = convertNoBannedTerms;
//# sourceMappingURL=no-banned-terms.js.map