Use when asked to review a MR/PR on GitHub or GitLab. Checks for XSS vulnerabilities, validates ARIA attributes and WCAG compliance, identifies render-blocking issues and race conditions, enforces semantic HTML. Produces actionable feedback.
93
93%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Reference standards for accessibility review.
aria-hidden="true" and focusable="false". [Important]<span class="sr-only"> with description. [Important]aria-hidden="false", role="img", aria-label. [Important]aria-hidden="true" and hidden from layout (e.g. position absolute, width 0, height 0, overflow hidden). [Important]viewBox (fixed width/height instead) — consider sprite optimization and SVGO. [Important].focus(). [Important]<a> for navigation, <button> for actions — never the opposite. [Important]<label> (or aria-label / aria-labelledby if visual label impossible). [Important]<div> or <span>) without tabindex="0" and keyboard event listener (Enter/Space). [Important]<img> without alt attribute (use empty alt="" for decorative images). [Important]aria-live="polite" or aria-live="assertive" for critical alerts. [Important]role="alert" or role="status". [Important]aria-expanded updated on the trigger element. [Important]