For CI scripts and agent tooling that only care about the exit code, add a --quiet flag to suppress the "OK: file.vera" success output. Errors should still be printed.
vera check --quiet file.vera # exit 0 if OK, no output; exit 1 with error message if not
Pair with --json for machine-readable output in pipelines.
For CI scripts and agent tooling that only care about the exit code, add a
--quietflag to suppress the "OK: file.vera" success output. Errors should still be printed.vera check --quiet file.vera # exit 0 if OK, no output; exit 1 with error message if notPair with
--jsonfor machine-readable output in pipelines.