Shape the Review Experience: Lean vs Verbose
Lean review experience
# Only show the most critical issues inline
inline_comments_severity_threshold = 3
# Show feedback primarily in the summary
comments_location_policy = "summary"
# Ignore low-signal PRs and generated code
[config]
ignore_pr_labels = ["chore", "skip-review"]
ignore_language_framework = ["protobuf"]
# Display a minimal set of findings and keep most sections collapsed
[review_agent_ux]
finding_overflow_count = 1
resolved_overflow_count = 1
expand_description = true
expand_code = false
expand_evidence = false
expand_prompt = falseVerbose review experience
Last updated