summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/pint.lua
blob: e0bffb46a755db30a558f0d2c0b8daee72898a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local util = require("conform.util")

---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/laravel/pint",
    description = "Laravel Pint is an opinionated PHP code style fixer for minimalists.",
  },
  command = util.find_executable({
    "vendor/bin/pint",
  }, "pint"),
  args = { "$FILENAME" },
  stdin = false,
}