@@ -258,6 +258,7 @@ import { convertReactA11yAnchors } from "./ruleConverters/react-a11y-anchors";
258258import { convertReactA11yImageButtonHasAlt } from "./ruleConverters/react-a11y-image-button-has-alt" ;
259259import { convertReactA11yImgHasAlt } from "./ruleConverters/react-a11y-img-has-alt" ;
260260import { convertReactA11yProps } from "./ruleConverters/react-a11y-props" ;
261+ import { convertReactA11yRoleHasRequiredAriaProps } from "./ruleConverters/react-a11y-role-has-required-aria-props" ;
261262import { convertReactA11yTabIndexNoPositive } from "./ruleConverters/react-a11y-tabindex-no-positive" ;
262263import { convertReactNoDangerousHtml } from "./ruleConverters/react-no-dangerous-html" ;
263264import { convertReactTsxCurlySpacing } from "./ruleConverters/react-tsx-curly-spacing" ;
@@ -499,6 +500,7 @@ export const ruleConverters = new Map([
499500 [ "react-a11y-image-button-has-alt" , convertReactA11yImageButtonHasAlt ] ,
500501 [ "react-a11y-img-has-alt" , convertReactA11yImgHasAlt ] ,
501502 [ "react-a11y-props" , convertReactA11yProps ] ,
503+ [ "react-a11y-role-has-required-aria-props" , convertReactA11yRoleHasRequiredAriaProps ] ,
502504 [ "react-a11y-tabindex-no-positive" , convertReactA11yTabIndexNoPositive ] ,
503505 [ "react-no-dangerous-html" , convertReactNoDangerousHtml ] ,
504506 [ "react-tsx-curly-spacing" , convertReactTsxCurlySpacing ] ,
0 commit comments