AI / Merge Mind: The Self Learning AI Code Review Bot Interview Questions
What is the difference between critical, major, minor, and suggestion severity levels?
| Severity | Typical meaning |
| Critical | Blocking issues such as security vulnerabilities that should stop a merge until fixed |
| Major | Significant problems like performance issues or logic errors that need attention before merging |
| Minor | Smaller concerns worth fixing but not urgent enough to block a merge |
| Suggestion | Optional improvements or stylistic preferences a developer can take or leave |
This hierarchy exists so a developer scanning a long review can immediately triage what to fix first, rather than treating every comment with equal urgency.
More Related questions...