rona 2.0.2

A simple CLI tool to help you with your git workflow.
1
2
3
4
5
6
7
8
pre-commit:
    commands:
        - cargo fmt --all -- --check
        - cargo clippy --workspace --release --all-targets --all-features -- --deny warnings -D warnings -W clippy::correctness -W clippy::suspicious -W clippy::complexity -W clippy::perf -W clippy::style -W clippy::pedantic
pre-push:
    commands:
        - cargo build --verbose
        - cargo test --verbose