mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
56bf24edaa
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
677 B
677 B
bacon
A background code checker for Rust. More information: https://github.com/Canop/bacon.
- Run
cargo checkwhenever a change is detected in the current directory:
bacon
- Run
cargo testwhenever a change is detected in the given directory:
bacon test {{path/to/directory}}
- Run
cargo checkagainst all targets whenever a change is detected in the current directory:
bacon check-all
- Run a specific job whenever a change is detected in the current directory:
bacon {{run|test|clippy|doc|...}}
- List all currently available jobs:
bacon --list-jobs
- Initialize a
bacon.tomlconfiguration file in the current directory:
bacon --init