How Greptile learns to reduce distracting minor comments and focus on issues that matter
Greptile learns to eliminate nitpicky comments that distract developers from critical issues by analyzing which suggestions your team actually acts on.
Example 1: Style Comments Get FilteredExample 2: Critical Issues Always Surface
Copy
Ask AI
// Greptile will ALWAYS comment on this (even if team ignores style):function transferMoney(amount, account) { // No input validation - SECURITY RISK database.transfer(amount, account);}// But stops commenting on this after learning:const user = getUser() // Missing semicolon - but team doesn't care
PR #123 - Add user authentication├── 🔴 Missing input validation (CRITICAL)├── 🟡 Consider adding error handling├── 🟢 Missing semicolon on line 45├── 🟢 Inconsistent indentation├── 🟢 Import order could be improved ├── 🟢 Function could use better name└── 🟢 Missing JSDoc comment