summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/fourmolu.lua
blob: 9c6499918995a2cba630457c472d57331245cffd (plain)
1
2
3
4
5
6
7
8
9
10
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://hackage.haskell.org/package/fourmolu",
    description = "Fourmolu is a formatter for Haskell source code.",
  },
  command = "fourmolu",
  args = { "--stdin-input-file", "$FILENAME" },
  stdin = true,
}