summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/trim_newlines.lua
blob: 4397ac77c74a04af356fb5666c64247355ba9400 (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 = "Trim new lines with awk",
  },
  command = "awk",
  args = { 'NF{print s $0; s=""; next} {s=s ORS}' },
}