DataDesigner/greptile.json
Andre Manoel 57c818c90e
chore: reduce Greptile review noise from defensive coding suggestions (#423)
* Reduce Greptile review noise from defensive coding suggestions

Set strictness to 3 (critical only), filter to logic-only comments,
and add instructions to skip defensive coding patterns like error
handling, null checks, and input validation unless there's an actual bug.

* Collapse sequence diagram section by default

---------

Co-authored-by: Nabin Mulepati <nmulepati@nvidia.com>
2026-03-30 17:42:52 -03:00

31 lines
956 B
JSON

{
"triggerOnUpdates": true,
"statusCommentsEnabled": false,
"statusCheck": true,
"shouldUpdateDescription": false,
"updateExistingSummaryComment": true,
"fixWithAI": true,
"strictness": 3,
"commentTypes": ["logic"],
"instructions": "Do not suggest defensive coding patterns such as adding error handling, null checks, try/catch blocks, or input validation unless there is a concrete, demonstrable bug. Focus on logic errors, correctness issues, and actual bugs. Do not suggest adding logging, comments, or docstrings.",
"summarySection": {
"included": true,
"collapsible": false,
"defaultOpen": false
},
"issuesTableSection": {
"included": true,
"collapsible": false,
"defaultOpen": false
},
"confidenceScoreSection": {
"included": true,
"collapsible": true,
"defaultOpen": true
},
"sequenceDiagramSection": {
"included": true,
"collapsible": true,
"defaultOpen": false
}
}