modum
It is a lint tool. It reports diagnostics. It does not rewrite code.
Why It Exists
modum exists to catch two common Rust API-shape problems:
- flattened imports that hide useful context at call sites
- redundant leaf names that repeat context the module path already provides
These call-site shapes are legal Rust, but they make signatures and public paths harder to scan:
These usually read more clearly:
The same pattern shows up in public API paths:
Repository
InvalidEmail
Error
instead of:
UserRepository
InvalidEmailError
Error
The central comparison is often this:
Repository
UserRepository
In the abstract, user::Repository is usually better than UserRepository.
Why:
- The domain lives in the path, which is where Rust already gives you structure.
- The leaf can stay generic and composable:
user::Repository,user::Service,user::Id. - It scales better across a crate than baking the domain into every type name.
That is also why user::Repository is usually better than user::UserRepository: once the path is doing the domain work, the leaf does not need to repeat it.
The main caveat is that this only holds when user is a real semantic module. If the parent path is weak or technical, then a longer leaf can still be better. UserRepository is often clearer than storage::Repository.
So the rule is:
- strong semantic parent: prefer
user::Repository - weak or technical parent: prefer the more descriptive leaf
modum enforces that style across an entire workspace.
Mental Model
modum follows four rules:
- Keep namespace context visible at call sites.
- Prefer a strong semantic parent with a short leaf:
user::RepositoryoverUserRepository. - Keep a more descriptive leaf when the parent path is weak or technical.
- Use modules for domain boundaries, not file organization.
Quick Usage
cargo install modum installs both modum and the Cargo subcommand cargo-modum, so either of these is valid:
Neovim
modum works well with nvim-lint. Use --mode warn so diagnostics do not fail the editor job, and use --format json for stable parsing.
local lint = require
lint.. =
lint.. =
If you edit multiple crates from one Neovim session, replace vim.fn.getcwd() with your workspace root resolver. modum is workspace-oriented, so it is usually better to run it on save than on every InsertLeave.
If you are developing modum itself:
Environment:
MODUM=off||
Default mode is deny.
CI Usage
Use modum the same way you would use clippy or cargo-deny: run it as a normal command in CI, not from build.rs.
- run: cargo install modum
- run: cargo modum check --root .
Exit Behavior
0: clean, or warnings allowed via--mode warn2: warning-level policy violations found indenymode1: hard errors, including parse/configuration failures and error-level policy violations such asapi_organizational_submodule_flatten
Configuration
Configure the lints in any workspace with Cargo metadata:
[]
= ["Id", "Repository", "Service", "Error", "Command", "Request", "Response"]
= ["storage", "transport", "infra", "common", "misc", "helpers", "helper", "types", "util", "utils"]
= ["common", "misc", "helpers", "helper", "types", "util", "utils"]
= ["error", "errors", "request", "response"]
= ["auth", "command", "components", "email", "error", "http", "page", "partials", "policy", "query", "repo", "store", "storage", "transport", "infra"]
Use [package.metadata.modum] inside a member crate to override workspace defaults for that package.
Tuning guide:
generic_nouns: generic leaves likeRepository,Error, orRequestnamespace_preserving_modules: modules that should stay visible at call sites, such ashttp,email,partials, orcomponentsorganizational_modules: modules that should not leak into the public API surface, such aserror,request, orresponse
Lint Categories
Import Style
These warn when imports or re-exports flatten a namespace that should stay visible.
namespace_flat_useWarning for flattened imports of generic nouns when there is an actionable namespace-visible call-site form that adds net context, such asstorage::Repositoryorhttp::StatusCode. It skips cases where the only preserved form would still be redundant, such aserror::Errororresponse::Response.namespace_flat_use_preserve_moduleWarning for flattened imports from configured namespace-preserving modules when the preserved call-site form still adds net context.namespace_flat_use_redundant_leaf_contextWarning for flattened imports or actionable rename-heavy aliases whose leaf repeats parent context. For plain imports, this only fires when the shorter leaf would be an actionable generic noun such asRepository,Error, orId. For rename aliases, this only fires when the qualified form would still preserve real context, such ashttp::StatusCodeorpage::Event.namespace_redundant_qualified_genericWarning for qualified call-site paths whose module only repeats a generic category already named by the leaf, such asresponse::Responseorerror::Error.namespace_parent_surfacenamespace_flat_pub_usenamespace_flat_pub_use_preserve_modulenamespace_flat_pub_use_redundant_leaf_context
Examples:
use storage::Repository;use http::Client;use user::UserRepository;response::Responseuse crate::error::Error;inside a crate whose root surface already exposesErrorpub use auth::{login, logout};
Canonical parent-surface re-exports are allowed. pub use error::{Error, Result}; is valid when that is how a module intentionally exposes module::Error and module::Result. The same applies to broader UI surfaces such as exposing both components::Button and partials::Button.
A semantic child module namespace can also stay flat when it is already doing the call-site naming work. For example, use components::tab_set; with call sites like tab_set::ContentProps should not be forced into components::tab_set::ContentProps.
Public API Paths
These warn when public leaves are too generic for a weak parent, when the path repeats context it already has, or when a flat family suggests a semantic module surface.
api_missing_parent_surface_exportapi_weak_module_generic_leafapi_redundant_leaf_contextWarning for public leaves that repeat semantic module context already carried by the path, such asuser::UserRepository, or that bake a sibling semantic module into a flat public leaf whenuser::Repositoryalready exists.api_candidate_semantic_moduleAdvisory warning for public item families such asUserRepository,UserService, andUserIdthat share a semantic head under one parent and suggest a module surface likeuser::{Repository, Service, Id}.api_redundant_category_suffix
Examples:
UserRepository,UserService,UserIdUserRepositorywhenuser::Repositoryalready existspartials::button::Buttonwhen the intended surface should also exposepartials::Buttonstorage::Repositoryuser::UserRepositoryuser::error::InvalidEmailError
Private organizational child modules are allowed to flatten their family items back to the parent surface. For example, mod auth_shell; pub use auth_shell::{AuthShell, AuthShellVariant}; is treated as a valid parent-surface export shape.
Module Boundaries
These catch weak or redundant public module structure.
api_catch_all_moduleapi_repeated_module_segment
Examples:
helperserror::error
Structural Errors
This rule is an error, not a warning.
api_organizational_submodule_flatten
Example:
partials::error::Errorshould usually bepartials::Errorresponse::Responseshould usually beResponse
What It Does Not Check
Some naming-guide rules stay advisory because they are too semantic to lint reliably without compiler-grade context.
Examples:
- choosing the best public path among several plausible domain decompositions
- deciding when an internal long name plus
pub use ... as ...is the right tradeoff - deciding whether a new module level adds real meaning or only mirrors the file tree in edge cases
Scope
Default discovery:
- package root: scans
<root>/src - workspace root: scans each member crate's
src
Override discovery with --include:
False Positives And False Negatives
The broader import-style lints only inspect module-scope use items. They do not scan local block imports inside functions or tight test scopes, because those scopes often benefit from flatter imports.
To reduce false negatives:
- extend
namespace_preserving_modulesfor domain modules likeuser,billing, ortenant - keep
generic_nounsaligned with the generic leaves your API actually uses - keep
organizational_modulesconfigured sopartials::error::Error-style paths stay blocked