Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ cargo clippy
cargo fmt --check
```

### Pre-PR Checklist

Before opening a PR, ensure your changes compile without warnings:

```bash
# Check library builds warning-free
cargo check --all-features 2>&1 | grep -E "warning:" && echo "Fix warnings before submitting" || echo "✓ No warnings"

# Check tests compile warning-free
cargo test --no-run 2>&1 | grep -E "warning:" && echo "Fix test warnings before submitting" || echo "✓ No test warnings"
```

**No PR should be considered finished while warnings are still present.** Warnings slow down compilation, make CI noisier, and often indicate real issues.

## Code Style

- Follow Rust conventions (rustfmt enforced)
Expand Down
Loading