aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/zigfmt.lua
blob: 9c93c0bb9e579f481f3755dcf4298509968e4ac2 (plain)
1
2
3
4
5
6
7
8
9
---@type conform.FormatterConfig
return {
  meta = {
    url = "https://github.com/ziglang/zig",
    description = "Reformat Zig source into canonical form.",
  },
  command = "zig",
  args = { "fmt", "--stdin" },
}