feat: add prettier to format command

This commit is contained in:
billybonks 2024-02-07 14:03:22 +08:00 committed by Christopher Charbonneau Wells
parent f28df6ecf3
commit dda68e0fc3
1 changed files with 1 additions and 0 deletions

View File

@ -170,6 +170,7 @@ function format() {
return all(
_runInPipenv(["black", "."]),
_runInPipenv(["djlint", "--reformat", "."]),
_runCommand("npx", ["prettier", ".", "--write"]),
);
}