Import paths tell a story


Import paths tell a story.

Short import paths are a good sign - It tells me related code is colocated. πŸ‘

Stuff that can often be located near the caller:

Tests
Types
Styles
Hooks
Images
Utilities
Queries
Mutations
Constants

My rule: If it’s unlikely to be reused, I try to store it in the same file/directory as the caller.

View original on X