chore: make sure linters only run inside umap/ folder
No venv/, no node_modules/, not tmp/…
This commit is contained in:
parent
3e5927f65e
commit
6d358a1f71
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -21,9 +21,9 @@ format: ## Format the code and templates files
|
|||
.PHONY: lint
|
||||
lint: ## Lint the code and template files
|
||||
djlint umap/templates --lint &&\
|
||||
isort --check --profile black . &&\
|
||||
ruff format --check --target-version=py38 . &&\
|
||||
vermin --no-tips --violations -t=3.8- .
|
||||
isort --check --profile black umap/ &&\
|
||||
ruff format --check --target-version=py38 umap/ &&\
|
||||
vermin --no-tips --violations -t=3.8- umap/
|
||||
|
||||
docs: ## Compile the docs
|
||||
mkdocs build
|
||||
|
|
Loading…
Reference in a new issue