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 ruleP1universalStack: universal
configreviewtemporaryenvironment
Don't commit temporary test overrides in shared config
Revert environment/config values changed only for local testing (test URLs, force-enabled flags) before merging.
PR: frontpage-web · org-mining-hist-2026-06Created: Jun 18, 2026
Bad example
Old codejson
| 1 | "abcNyheter": { "url": "https://dt-1855-branch.dev.example.no/" } |
Explanation (EN)
Objašnjenje (HR)
Good example
New codejson
| 1 | "abcNyheter": { "url": "https://dev.example.no/" } |
Explanation (EN)
Objašnjenje (HR)