mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-07-24 04:45:02 +00:00
20 lines
337 B
Makefile
20 lines
337 B
Makefile
set dotenv-load := true
|
|
set unstable := true
|
|
|
|
mod docs ".just/docs.just"
|
|
|
|
# List all available commands
|
|
[private]
|
|
default:
|
|
@just --list
|
|
|
|
bumpver *ARGS:
|
|
uv run --with bumpver bumpver {{ ARGS }}
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
# run pre-commit on all files
|
|
lint:
|
|
@just --fmt
|
|
uv run --with pre-commit-uv pre-commit run --all-files
|