summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/trim_newlines.lua
blob: 434f35bf0a2a7092eff730d0130ef548c04c6013 (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}' },
}