Skip to content

VBC-101: img-missing-alt

error

Category: ux-dx
Analysis: Regex (whole file)
File types: .html, .js, .ts, .tsx, .astro
Scope: source code only, ignoring anything inside strings and comments
Tags: accessibility

What it reports

Image missing 'alt' attribute at line {line}.

Flagged

html
<img
  src="/logo.png"
/>

Not flagged

html
<img src="/logo.png" alt="Logo" />

Pattern

regex
<img\b(?![^>]*\balt\s*=)[^>]*>

Released under the MIT License.