UNPKG

tslint-to-eslint-config

Version:

Converts your TSLint configuration to the closest reasonable ESLint equivalent.

16 lines (15 loc) 401 B
"use strict"; 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