Skip to main content
Checks for modern image formats like WebP or AVIF
Rule IDimages/modern-format
CategoryImages
ScopePer-page
Severityinfo
Weight3/10

Solution

Modern formats (WebP, AVIF) offer 25-50% better compression than JPEG/PNG with similar quality. Use <picture> with WebP/AVIF sources and fallbacks. Most browsers support WebP (97%+). AVIF offers even better compression but lower support (~92%). Convert images with tools like cwebp, squoosh, or sharp.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["images/modern-format"]

Disable all Images rules

squirrel.toml
[rules]
disable = ["images/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["images/modern-format"]
disable = ["*"]