aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/cue_fmt.lua
blob: e9787d686620f5a347486ca1949c4a2bf39c7b35 (plain)
1
2
3
4
5
6
7
8
9
10
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://cuelang.org",
    description = "Format CUE files using `cue fmt` command.",
  },
  command = "cue",
  args = { "fmt", "-" },
  stdin = true,
}