Skip to content

Commit add2b3b

Browse files
committed
Merge remote-tracking branch 'apache/main' into arrow-avro
2 parents 471abd3 + 37978e3 commit add2b3b

275 files changed

Lines changed: 6663 additions & 1601 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AGENTS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,24 @@ Before committing any changes, you MUST follow the instructions in
1515
and ensure the required checks listed there pass. Do not commit code that
1616
fails any of those checks.
1717

18+
At a minimum, you MUST run and fix any errors from these commands before
19+
committing:
20+
21+
```bash
22+
# Format code
23+
cargo fmt --all
24+
25+
# Lint (must pass with no warnings)
26+
cargo clippy --all-targets --all-features -- -D warnings
27+
```
28+
29+
You can also run the full lint suite used by CI:
30+
31+
```bash
32+
./dev/rust_lint.sh
33+
# or auto-fix: ./dev/rust_lint.sh --write --allow-dirty
34+
```
35+
1836
When creating a PR, you MUST follow the [PR template](.github/pull_request_template.md).
1937

2038
## Testing

0 commit comments

Comments
 (0)