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
dependenciesreleaseversioning
Depend on stable releases, not preview/snapshot versions, for production
Don't ship a production build that depends on a preview/beta package version; cut a stable release first.
PR: hegnar-web · org-mining-2026-06Created: Jun 17, 2026
Bad example
Old codejson
| 1 | "ui-lib": "2.16.0-preview.3" |
Explanation (EN)
Objašnjenje (HR)
Good example
New codejson
| 1 | "ui-lib": "2.16.0" |
Explanation (EN)
Objašnjenje (HR)