tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
12 lines (11 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatRawTslintRule = void 0;
const formatRawTslintRule = (ruleName, value) => ({
ruleArguments: [],
ruleName,
ruleSeverity: "error",
...value,
});
exports.formatRawTslintRule = formatRawTslintRule;
//# sourceMappingURL=formatRawTslintRule.js.map