mirror of https://github.com/snachodog/mybuddy.git
Add djlint to gulp format
This commit is contained in:
parent
682090f594
commit
59e9263a69
|
@ -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', '.']),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue