summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/trim_whitespace.lua
blob: 3bbd89ea3009dee830a1e5efd1a06196ccaa7a8e (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 whitespaces with awk.",
  },
  command = "awk",
  args = { '{ sub(/[ \t]+$/, ""); print }' },
}