aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/imba_fmt.lua
blob: 680bb9185cd937f3feff7043af5415321f8282b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://imba.io/",
    description = "Code formatter for the Imba programming language.",
  },
  command = "imba",
  stdin = false,
  -- `-f` is used to ignore the git status of the file.
  args = { "fmt", "-f", "$FILENAME" },
}