mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 10:08:30 +00:00
* add djls-django crate * rework * oops * add check for GDAL and GeoDjango * lots of things * remove unused scripts * move scripts to dedicated mod and make static consts * inline gdal check * rename mod * rename mod * move server info to consts * adjust pyproject * hide rustfmt config * simplify django setup * adjust printing
12 lines
224 B
Makefile
12 lines
224 B
Makefile
set dotenv-load := true
|
|
set unstable := true
|
|
|
|
# List all available commands
|
|
[private]
|
|
default:
|
|
@just --list
|
|
|
|
# run pre-commit on all files
|
|
lint:
|
|
@just --fmt
|
|
uv run --with pre-commit-uv pre-commit run --all-files
|