summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/uncrustify.lua
blob: 3430063ba810e33fa052c6d4de3814830cf3a8ac (plain)
1
2
3
4
5
6
7
8
9
10
11
---@type conform.FormatterConfig
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(ctx)
    return { "-q", "-l", vim.bo[ctx.buf].filetype:upper() }
  end,
}