summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/mix.lua
blob: fb21db672e76fd9a1716d783da56acf3a75943c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://hexdocs.pm/mix/main/Mix.Tasks.Format.html",
    description = "Format Elixir files using the mix format command.",
  },
  command = "mix",
  args = { "format", "-" },
  cwd = require("conform.util").root_file({
    ".formatter.exs",
    "mix.exs",
  }),
}