Document strict Clippy validation

This commit is contained in:
2026-07-31 03:48:26 +02:00
parent 8781bc67fd
commit 21579f1a57
+15
View File
@@ -6,6 +6,21 @@ changes.
## Validation
### Clippy
All targets, including the library and its unit tests, must pass the crate's
strict lint configuration with warnings denied:
```sh
cargo clippy --all-targets --all-features -- -D warnings
```
Do not consider a change complete while this command reports diagnostics.
Prefer fixing diagnostics. When a lint intentionally conflicts with documented
behavior, use the narrowest possible lint expectation and include a reason.
### Ordinary tests
Run the ordinary test suite with:
```sh