tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
16 lines (15 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertMochaAvoidOnly = void 0;
const convertMochaAvoidOnly = () => {
return {
plugins: ["eslint-plugin-jest"],
rules: [
{
ruleName: "jest/no-focused-tests",
},
],
};
};
exports.convertMochaAvoidOnly = convertMochaAvoidOnly;
//# sourceMappingURL=mocha-avoid-only.js.map