addyosmani / a11y

Accessibility audit tooling for the web (beta)
http://addyosmani.github.io/a11y/
Apache License 2.0
1.71k stars 76 forks source link

Add --quiet option for error-only output #64

Open paulcpederson opened 8 years ago

paulcpederson commented 8 years ago

I'm running a11y on an entire folder of files from the command line. It would really help me if there was a way to only output errors. I'm thinking that if all the rules pass for a page, it would just log the page with a checkmark. Example output:

$ ally **/*.html

✔ file1.html
✔ file2.html
✖ file3.html

  ✖ The purpose of each link should be clear from the link text

   body > .panel.panel-white.article.article-red > A

✔ file4.html

Let me know if you'd be interested in a feature like this, happy to pr.