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).
backend ruleP2universalStack: Node/Express
templatingssrclarity
Use a comment as a placeholder for a block you replace at build/serve time
When server-side string replacement swaps in markup, mark the spot with an HTML comment rather than a fake/typo'd meta tag.
PR: hegnar-bellsheep-web · org-mining-hist-2026-06Created: Jun 18, 2026
Bad example
Old codehtml
| 1 | <meta prpoerty="DEV_PLACEHOLDER" /> |
Explanation (EN)
Objašnjenje (HR)
Good example
New codehtml
| 1 | <!-- app-head --> |
Explanation (EN)
Objašnjenje (HR)