mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
The script makes it easier to manually check REPL and benchmark code with clippy without the need to copy-paste all the flags.
4 lines
126 B
Bash
Executable File
4 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
# Run clippy for all Rust code in the project.
|
|
cargo clippy --workspace --tests --examples --benches -- -D warnings
|