Simplify your Git pre-commit hooks.
WARNING
Commitment files contain arbitrary shell commands. Be cautious when installing a Commitment file and always review first!
To use Commitment, start by creating a commitment.yml
file in the root
directory of your project. See the next section for an example.
Commitment files need to be installed before they take effect. To install a
Commitment file, run commitment install
in the root of your project.
```yaml
cargo-build: # This must be defined for every task. Multiple commands can be specified and # will be executed within the same shell session. This means you can change # directories and run commands there. execute: - cargo build --color=always
cargo-fmt: execute: - cargo fmt --check
cargo-clippy: execute: - cargo clippy --color=always -- -D warnings ```