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