tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
15 lines • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoForIn = void 0;
const convertNoForIn = () => {
return {
rules: [
{
ruleArguments: ["ForInStatement"],
ruleName: "no-restricted-syntax",
},
],
};
};
exports.convertNoForIn = convertNoForIn;
//# sourceMappingURL=no-for-in.js.map