From 59e9263a69b9d796e97545755225cbaf98f469ff Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Tue, 6 Feb 2024 20:24:55 -0800 Subject: [PATCH] Add djlint to gulp format --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 45a07dd4..78dbfc32 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -145,7 +145,10 @@ function extras() { * Runs Black formatting on Python code. */ function format() { - return _runInPipenv(['black', '.']); + return all( + _runInPipenv(['black', '.']), + _runInPipenv(['djlint', '--reformat', '.']), + ); } /**