mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Add clippy.toml with absolute-paths-max-segments = 2 (allowing std/core/alloc) and enable the absolute_paths = "warn" lint workspace-wide. Fix all ~300 violations across the codebase: replace 3+-segment inline paths with use statements so call sites read as operations::create() rather than fabro_workflows::operations::create(). The demo module gets an allow attribute since it constructs many API types by design. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2 lines
89 B
TOML
2 lines
89 B
TOML
absolute-paths-max-segments = 2
|
|
absolute-paths-allowed-crates = ["std", "core", "alloc"]
|