You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add_offense("Use loading=\"eager\" for images visible in the viewport on load and loading=\"lazy\" for others", node: node) unless node.attributes["loading"]
add_offense("Remove data-src and data-srcset attributes", node: node) if BANNED_ATTRIBUTES.any? { |attr| node.attributes.key?(attr) }