summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/rescript-format.lua
blob: 806b380503536335ed45192ef76e8d08ce210175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
-- The formatter expects one of [.res | .resi | .ml | .mli] passed as
-- the value to the '-stdin' argument.
local valid_extensions = {
  res = true,
  resi = true,
  ml = true,
  mli = true,
}

local default_extension = "res"

---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://rescript-lang.org/",
    description = "The built-in ReScript formatter.",
  },
  command = "rescript",
  args = function(self, ctx)
    local extension = vim.fn.fnamemodify(ctx.filename, ":e")

    local is_invalid_extension = valid_extensions[extension] == nil
    if is_invalid_extension then
      extension = default_extension
    end

    return {
      "format",
      "-stdin",
      "." .. extension,
    }
  end,
  stdin = true,

  require_cwd = true,
  cwd = require("conform.util").root_file({
    "rescript.json",
    "bsconfig.json",
  }),
}