@@ -257,6 +257,7 @@ import { convertReactA11yAccessibleHeadings } from "./ruleConverters/react-a11y-
257257import { 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" ;
260+ import { convertReactA11yLang } from "./ruleConverters/react-a11y-lang" ;
260261import { convertReactA11yProps } from "./ruleConverters/react-a11y-props" ;
261262import { convertReactA11yRoleHasRequiredAriaProps } from "./ruleConverters/react-a11y-role-has-required-aria-props" ;
262263import { convertReactA11yTabIndexNoPositive } from "./ruleConverters/react-a11y-tabindex-no-positive" ;
@@ -499,6 +500,7 @@ export const ruleConverters = new Map([
499500 [ "react-a11y-anchors" , convertReactA11yAnchors ] ,
500501 [ "react-a11y-image-button-has-alt" , convertReactA11yImageButtonHasAlt ] ,
501502 [ "react-a11y-img-has-alt" , convertReactA11yImgHasAlt ] ,
503+ [ "react-a11y-lang" , convertReactA11yLang ] ,
502504 [ "react-a11y-props" , convertReactA11yProps ] ,
503505 [ "react-a11y-role-has-required-aria-props" , convertReactA11yRoleHasRequiredAriaProps ] ,
504506 [ "react-a11y-tabindex-no-positive" , convertReactA11yTabIndexNoPositive ] ,
0 commit comments