Add djlint to gulp format

This commit is contained in:
Christopher C. Wells 2024-02-06 20:24:55 -08:00
parent 682090f594
commit 59e9263a69
1 changed files with 4 additions and 1 deletions

View File

@ -145,7 +145,10 @@ function extras() {
* Runs Black formatting on Python code. * Runs Black formatting on Python code.
*/ */
function format() { function format() {
return _runInPipenv(['black', '.']); return all(
_runInPipenv(['black', '.']),
_runInPipenv(['djlint', '--reformat', '.']),
);
} }
/** /**