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