aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/puppet-lint.lua
blob: 6cc231e989815ed91463f9f4e20cf144d1c28241 (plain)
1
2
3
4
5
6
7
8
9
10
11
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/puppetlabs/puppet-lint",
    description = "Check that your Puppet manifests conform to the style guide.",
  },
  command = "puppet-lint",
  args = { "--fix", "$FILENAME" },
  stdin = false,
  exit_codes = { 0, 1 },
}