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 ruleP2project specificStack: npm/pnpm
package-jsonconventionstooling
Keep package.json script names consistent across repos
Match common script names (e.g. typecheck) to the convention used across your other repos so commands are unified, even if it bends local kebab-case.
PR: hegnar-forum-web · org-mining-3rd-2026-06Created: Jun 18, 2026
Bad example
Old codejson
| 1 | "type-check": "tsc --noEmit" |
Explanation (EN)
Objašnjenje (HR)
Good example
New codejson
| 1 | "typecheck": "tsc --noEmit" |
Explanation (EN)
Objašnjenje (HR)