aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/uncrustify.lua
blob: aec93c26a494f48cb5adde1a41ba28e71d70decc (plain)
1
2
3
4
5
6
7
8
9
10
11
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/uncrustify/uncrustify",
    description = "A source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and Vala.",
  },
  command = "uncrustify",
  args = function(self, ctx)
    return { "-q", "-l", vim.bo[ctx.buf].filetype:upper() }
  end,
}