File tree Expand file tree Collapse file tree
src/pages/AgentsPage/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 "linter" : {
1616 "rules" : {
1717 "a11y" : {
18+ "useMediaCaption" : " off" , // oxlint owns media-has-caption
1819 "noSvgWithoutTitle" : " off" ,
1920 "useButtonType" : " off" ,
2021 "useSemanticElements" : " off" ,
Original file line number Diff line number Diff line change 3535 "autocomplete-valid" : " error" ,
3636 "html-has-lang" : " error" ,
3737 "lang" : " error" ,
38+ "media-has-caption" : " error" ,
3839
3940 // --- complexity ---
4041 "no-regex-spaces" : " error" ,
213214 "no-empty-interface" : " off" , // suspicious/noEmptyInterface (small)
214215 "no-danger" : " off" , // security/noDangerouslySetInnerHtml (small: Biome suppression to migrate)
215216 "no-noninteractive-tabindex" : " off" , // a11y/noNoninteractiveTabindex (small)
216- "media-has-caption" : " off" , // a11y/useMediaCaption (small)
217217 "interactive-supports-focus" : " off" , // a11y/useFocusableInteractive (small)
218218 "iframe-has-title" : " off" , // a11y/useIframeTitle (small)
219219 "prefer-template" : " off" , // style/useTemplate (small)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const VideoLightbox: FC<VideoLightboxProps> = ({
2727 { RECORDING_UNAVAILABLE_TEXT }
2828 </ div >
2929 ) : (
30- // biome-ignore lint/ a11y/useMediaCaption: Screen recordings do not have caption tracks.
30+ // oxlint-disable-next-line jsx- a11y/media-has-caption -- Screen recordings do not have caption tracks.
3131 < video
3232 src = { src }
3333 controls
You can’t perform that action at this time.
0 commit comments