mit-lint 3.4.1

Lints for commits parsed with mit-commit.
Documentation
# This help screen
show-help:
	just --list

# Test it was built ok
test:
	RUST_BACKTRACE=1 cargo test

# Build release version
build:
	cargo build --release

# Check performance
bench:
	cargo bench

# Lint the whole project
lint:
	cargo fmt --all -- --check
	cargo clippy --all-features
	cargo check
	cargo audit

# Format what can be formatted
fmt:
	cargo fix --allow-dirty --allow-staged --all-features
	cargo clippy --allow-dirty --allow-staged --fix --all-features
	cargo fmt --all
	npx prettier --write **.yml **.json

# Clean the build directory
clean:
	cargo clean

# Check tests
mutate:
  cargo mutants