tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
14 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertSwitchDefault = void 0;
const convertSwitchDefault = () => {
return {
rules: [
{
ruleName: "default-case",
},
],
};
};
exports.convertSwitchDefault = convertSwitchDefault;
//# sourceMappingURL=switch-default.js.map