Rules Hub
Coding Rules Library
← Back to all rules
Rule priority, scope & exceptions
Use this to align rules with the senior-level structure (P0/P1/P2, scope, exceptions/tradeoffs).
fullstack ruleP2universalStack: general
processcode-reviewscopepull-requests
Keep changes scoped and split unrelated refactors into their own PR
Changes not required by the task at hand belong in a separate PR; bundling them makes review harder and widens the blast radius.
PR: hegnar-forum-web · org-mining-3rd-2026-06Created: Jun 18, 2026
Bad example
Old codetext
| 1 | // PR titled "add ticker chip" also rewrites unrelated ThreadInfo styling |
Explanation (EN)
Objašnjenje (HR)
Good example
New codetext
| 1 | // PR "add ticker chip" stays focused; ThreadInfo restyle goes in its own PR |
Explanation (EN)
Objašnjenje (HR)