| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Replace --quiet with stdout redirection. Ruff's --quiet flag suppresses all output including parse errors (e.g. merge markers), making format failures in CI impossible to diagnose. Redirecting stdout to /dev/null suppresses the file list but lets errors (which go to stderr) through. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Committed-By-Agent: claude
| Back | FazBrowse Home | New Git URL |
Why?
When just format or just format-check fails (e.g. ruff encounters a merge marker or syntax error), --quiet suppresses all output including the error diagnostic. This makes CI failures impossible to diagnose — you just see "recipe format failed with exit code 2" with no indication of which file or what went wrong.
What?
See Also