summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/djlint.lua
blob: 03922bdd845c72411b4aa1ad5ac3dfe456c4e46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local util = require("conform.util")
---@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",
    "-",
  },
  cwd = util.root_file({
    ".djlintrc",
  }),
}