tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
22 lines (21 loc) • 638 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNewlineBeforeReturn = void 0;
const convertNewlineBeforeReturn = () => {
return {
rules: [
{
ruleName: "padding-line-between-statements",
ruleArguments: [
{
blankLine: "always",
prev: "*",
next: "return",
},
],
},
],
};
};
exports.convertNewlineBeforeReturn = convertNewlineBeforeReturn;
//# sourceMappingURL=newline-before-return.js.map