summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/gci.lua
blob: 88293d7821cf786360612e3521af963548fa3463 (plain)
1
2
3
4
5
6
7
8
9
10
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/daixiang0/gci",
    description = "GCI, a tool that controls Go package import order and makes it always deterministic.",
  },
  command = "gci",
  args = { "write", "--skip-generated", "--skip-vendor", "$FILENAME" },
  stdin = false,
}