mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 11:43:00 +00:00
34 lines
770 B
Plaintext
34 lines
770 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# bacon
|
|
|
|
> A background code checker for Rust.
|
|
> More information: <https://github.com/Canop/bacon>.
|
|
|
|
- Run `cargo check` whenever a change is detected in the current directory:
|
|
|
|
`bacon`
|
|
|
|
- Run `cargo test` whenever a change is detected in the given directory:
|
|
|
|
`bacon test {{path/to/directory}}`
|
|
|
|
- Run `cargo check` against 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.toml` configuration file in the current directory:
|
|
|
|
`bacon --init`
|