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: node
buildscriptsdead-codetooling
Keep only the build/run scripts that are actually used
Remove duplicate or dead package scripts so the only supported way to build/run is unambiguous.
PR: hegnar-web · org-mining-hist-2026-06Created: Jun 19, 2026
Bad example
Old codejson
| 1 | "scripts": { |
| 2 | "build": "gulp build", |
| 3 | "build-all": "gulp build" |
| 4 | } |
Explanation (EN)
Objašnjenje (HR)
Good example
New codejson
| 1 | "scripts": { |
| 2 | "build": "gulp build" |
| 3 | } |
Explanation (EN)
Objašnjenje (HR)