summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/terraform_fmt.lua
blob: 4bfd2f508c2050b8bc9de94fc08fafbe1ddaf929 (plain)
1
2
3
4
5
6
7
8
9
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://www.terraform.io/docs/cli/commands/fmt.html",
    description = "The terraform-fmt command rewrites `terraform` configuration files to a canonical format and style.",
  },
  command = "terraform",
  args = { "fmt", "-no-color", "-" },
}