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).
frontend ruleP2universalStack: TypeScript
importsbarrelreadability
Use re-export shorthand for index barrel files
For a barrel that only re-exports a default, prefer the export-from shorthand over importing then re-exporting.
PR: hegnar-forum-web · org-mining-3rd-2026-06Created: Jun 18, 2026
Bad example
Old codets
| 1 | import CalendarFilter from './CalendarFilter'; |
| 2 | export default CalendarFilter; |
Explanation (EN)
Objašnjenje (HR)
Good example
New codets
| 1 | export { default } from './CalendarFilter'; |
Explanation (EN)
Objašnjenje (HR)