aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/trim_whitespace.lua
blob: 7178e0e5323dcb29a118410fc729a6e96ba1e342 (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 }' },
}