summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/docformatter.lua
blob: fa2edb017989f15f4d1f93379d00295e9d0c1d6c (plain)
1
2
3
4
5
6
7
8
9
10
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://pypi.org/project/docformatter/",
    description = "docformatter automatically formats docstrings to follow a subset of the PEP 257 conventions.",
  },
  command = "docformatter",
  args = { "--in-place", "$FILENAME" },
  stdin = false,
}