tsdl 1.2.0

A downloader/builder of many tree-sitter parsers
Documentation
#!/usr/bin/env -S just --justfile

clippy:
  cargo clippy --all --all-targets -- --deny warnings

clippy-fix *args:
  cargo clippy --fix {{args}}

clippy-fix-now:
  @just clippy-fix --allow-dirty --allow-staged

fmt:
  cargo fmt --all

fmt-check:
  cargo fmt --all -- --check

lint: clippy fmt-check

setup:
  cargo install git-cliff nextest typos-cli

test *args:
  cargo nextest run {{args}}