mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 01:58:18 +00:00
* Get rid of all transport types and settle on Protobuf hope i don't regret this * Update Cargo.toml * Update agent.py
17 lines
281 B
Makefile
17 lines
281 B
Makefile
set dotenv-load := true
|
|
set unstable := true
|
|
|
|
mod proto ".just/proto.just"
|
|
|
|
# List all available commands
|
|
[private]
|
|
default:
|
|
@just --list
|
|
|
|
clean:
|
|
rm -rf target/
|
|
|
|
# run pre-commit on all files
|
|
lint:
|
|
@just --fmt
|
|
uv run --with pre-commit-uv pre-commit run --all-files
|