tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
16 lines (15 loc) • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoUseOfEmptyReturnValue = void 0;
const convertNoUseOfEmptyReturnValue = () => {
return {
rules: [
{
ruleName: "sonarjs/no-use-of-empty-return-value",
},
],
plugins: ["sonarjs"],
};
};
exports.convertNoUseOfEmptyReturnValue = convertNoUseOfEmptyReturnValue;
//# sourceMappingURL=no-use-of-empty-return-value.js.map