aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/fprettify.lua
blob: b63a828f89b839b13090ae7e7ef9c458dc9f2fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/fortran-lang/fprettify",
    description = "Auto-formatter for modern fortran source code.",
  },
  command = "fprettify",
  args = {
    -- --silent is recommended for editor integrations https://github.com/fortran-lang/fprettify?tab=readme-ov-file#editor-integration
    "--silent",
    "-",
  },
  stdin = true,
}