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