summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/awk.lua
blob: 00df393e9dfe5ccfd7ad13c4b7e55eb0cc8c860f (plain)
1
2
3
4
5
6
7
8
9
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://www.gnu.org/software/gawk/manual/gawk.html",
    description = "Format awk programs with awk",
  },
  command = "awk",
  args = { "-f", "-", "-o-" },
}