tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
17 lines (16 loc) • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoNullKeyword = void 0;
const convertNoNullKeyword = () => {
return {
notices: ["Null types will no longer be handled."],
rules: [
{
ruleName: "no-null/no-null",
},
],
plugins: ["eslint-plugin-no-null"],
};
};
exports.convertNoNullKeyword = convertNoNullKeyword;
//# sourceMappingURL=no-null-keyword.js.map