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