tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
19 lines (18 loc) • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertPreferArrayLiteral = void 0;
const convertPreferArrayLiteral = () => {
return {
rules: [
{
ruleName: "no-array-constructor",
ruleSeverity: "off",
},
{
ruleName: "@typescript-eslint/no-array-constructor",
},
],
};
};
exports.convertPreferArrayLiteral = convertPreferArrayLiteral;
//# sourceMappingURL=prefer-array-literal.js.map