aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform
diff options
context:
space:
mode:
authorzootedb0t <05kraken@proton.me>2023-09-14 23:34:45 +0530
committerGitHub <noreply@github.com>2023-09-14 11:04:45 -0700
commitead025784c8e31b8e45016e620c2f17a13ff741a (patch)
treee2fd73e3078f4f01688806a66708ba518d11b622 /lua/conform
parentdbf1d44404d4e0dcd23dcb94a5559ef0d0c424cc (diff)
feat: add djlint (#47)
Diffstat (limited to 'lua/conform')
-rw-r--r--lua/conform/formatters/djlint.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/conform/formatters/djlint.lua b/lua/conform/formatters/djlint.lua
new file mode 100644
index 0000000..9cd2b5b
--- /dev/null
+++ b/lua/conform/formatters/djlint.lua
@@ -0,0 +1,12 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/Riverside-Healthcare/djLint",
+ description = "✨ HTML Template Linter and Formatter. Django - Jinja - Nunjucks - Handlebars - GoLang.",
+ },
+ command = "djlint",
+ args = {
+ "--reformat",
+ "-",
+ },
+}