django-language-server/Justfile
Josh Thomas 5c821d8591
add basic documentation (#42)
* add basic documentation

* remove leading slash
2024-12-16 16:47:58 -06:00

21 lines
369 B
Makefile

set dotenv-load := true
set unstable := true
mod docs ".just/docs.just"
mod proto ".just/proto.just"
# List all available commands
[private]
default:
@just --list
bumpver *ARGS:
uv run --with bumpver bumpver {{ ARGS }}
clean:
rm -rf target/
# run pre-commit on all files
lint:
@just --fmt
uv run --with pre-commit-uv pre-commit run --all-files