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