Update fmt command to use Ruff

This commit is contained in:
Adam Goldsmith 2024-02-05 01:00:15 -05:00
parent 72a1ce8750
commit af70e0899f

View File

@ -128,7 +128,7 @@ dev = [
[tool.pdm.scripts]
start = "./manage.py runserver"
fmt.shell = "black . && djlint --reformat ."
fmt.shell = "ruff check --fix && ruff format . && djlint --reformat ."
[build-system]
requires = ["pdm-backend"]