logoalt Hacker News

hydra-fyesterday at 10:59 AM1 replyview on HN

A lefthook:

format: glob: ".rs" run: cargo fmt -- --check

lint: glob: ".rs" run: cargo clippy -- -D warnings

tests: run: cargo test

audit: run: cargo audit

+ hooks that shove the lefthook automatically in the ai's face

---

rustfmt.toml:

edition = "2021" newline_style = "Unix" use_small_heuristics = "Max" max_width = 100


Replies

ramon156yesterday at 11:21 AM

use "stage_fixed" to automatically persist the formatting :)

show 1 reply