summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/styler.lua
blob: d9052c1f0c79b757dd80e66f9310620b8125e172 (plain)
1
2
3
4
5
6
7
8
9
10
11
local util = require("conform.util")
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/devOpifex/r.nvim",
    description = "R formatter and linter.",
  },
  command = util.find_executable({ "usr/bin/" }, "R"),
  args = { "-s", "-e", "r.nvim::format()", "--args", "$FILENAME" },
  stdin = false,
}