- Never use
panic!,unwrap(), orexpect()in production code. - Always handle errors explicitly using
ResultorOption.
- Run with strict pedantic linting enabled.
- Follow all clippy suggestions without adding
#[allow]directives. - Project-specific strictness is configured in
clippy.tomlorCargo.toml.