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