@@ -258,6 +258,7 @@ import { convertReactA11yAnchors } from "./ruleConverters/react-a11y-anchors";
258
258
import { convertReactA11yImageButtonHasAlt } from "./ruleConverters/react-a11y-image-button-has-alt" ;
259
259
import { convertReactA11yImgHasAlt } from "./ruleConverters/react-a11y-img-has-alt" ;
260
260
import { convertReactA11yProps } from "./ruleConverters/react-a11y-props" ;
261
+ import { convertReactA11yRoleHasRequiredAriaProps } from "./ruleConverters/react-a11y-role-has-required-aria-props" ;
261
262
import { convertReactA11yTabIndexNoPositive } from "./ruleConverters/react-a11y-tabindex-no-positive" ;
262
263
import { convertReactNoDangerousHtml } from "./ruleConverters/react-no-dangerous-html" ;
263
264
import { convertReactTsxCurlySpacing } from "./ruleConverters/react-tsx-curly-spacing" ;
@@ -499,6 +500,7 @@ export const ruleConverters = new Map([
499
500
[ "react-a11y-image-button-has-alt" , convertReactA11yImageButtonHasAlt ] ,
500
501
[ "react-a11y-img-has-alt" , convertReactA11yImgHasAlt ] ,
501
502
[ "react-a11y-props" , convertReactA11yProps ] ,
503
+ [ "react-a11y-role-has-required-aria-props" , convertReactA11yRoleHasRequiredAriaProps ] ,
502
504
[ "react-a11y-tabindex-no-positive" , convertReactA11yTabIndexNoPositive ] ,
503
505
[ "react-no-dangerous-html" , convertReactNoDangerousHtml ] ,
504
506
[ "react-tsx-curly-spacing" , convertReactTsxCurlySpacing ] ,
0 commit comments