ormada 0.1.0

Ergonomic ORM for Rust with compile-time safety and Django-like query API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Clippy configuration
# Enforce strict code quality standards

# Cognitive complexity threshold
cognitive-complexity-threshold = 30

# Note: We use Cargo.toml [lints] instead of disallowed-methods here
# This allows tests to use unwrap/expect while keeping production code strict

# Type complexity threshold
type-complexity-threshold = 250

# Too many arguments threshold
too-many-arguments-threshold = 7

# Avoid breaking exported API
avoid-breaking-exported-api = true