cargo-setupx 0.1.0

Rust-based CLI and library that automates the initial setup of new Rust projects with modular configuration packs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Clippy configuration
# Similar to .eslintrc for JavaScript

# Allow some lints that might be too strict for this project
# Most configuration is done via attributes in the code

# Allow single component path imports (like `use seahash;`)
# This is useful for re-exports and macro dependencies
# Note: This is configured via #[allow(clippy::single_component_path_imports)] in code

# Performance and style lints are generally good to keep enabled
# Disable specific ones in code if needed using #[allow(clippy::lint_name)]