clean-dev-dirs 2.0.0

A fast CLI tool for recursively cleaning Rust target/ and Node.js node_modules/ directories to reclaim disk space
1
2
3
4
5
6
7
8
9
10
11
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
    - cargo audit
    - cargo outdated

pre-push:
  commands:
    - cargo test -q
    - cargo build -q