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