mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-30 10:16:10 +00:00
- Add .cargo/config.toml with comprehensive clippy warnings - Add clippy.toml with custom thresholds for code complexity - Add rustfmt.toml with formatting rules for consistent code style
8 lines
No EOL
253 B
TOML
8 lines
No EOL
253 B
TOML
# Clippy configuration
|
|
cognitive-complexity-threshold = 30
|
|
too-many-arguments-threshold = 8
|
|
type-complexity-threshold = 250
|
|
single-char-binding-names-threshold = 4
|
|
too-many-lines-threshold = 400
|
|
array-size-threshold = 512
|
|
enum-variant-name-threshold = 3 |