aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/astyle.lua
blob: 58db84125ac6ab54db8c49aea818498c51eacf01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local util = require("conform.util")
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://astyle.sourceforge.net/astyle.html",
    description = "A Free, Fast, and Small Automatic Formatter for C, C++, C++/CLI, Objective-C, C#, and Java Source Code",
  },
  command = "astyle",
  args = { "--quiet" },
  cwd = util.root_file({
    ".astylerc",
    "_astylerc",
  }),
}