tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
16 lines (15 loc) • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertJsxKey = void 0;
const convertJsxKey = () => {
return {
rules: [
{
ruleName: "react/jsx-key",
},
],
plugins: ["eslint-plugin-react"],
};
};
exports.convertJsxKey = convertJsxKey;
//# sourceMappingURL=jsx-key.js.map