summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/pyink.lua
blob: cce1059dcf411d8c49ab3533d43c2437bd924413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/google/pyink",
    description = "A Python formatter, forked from Black with a few different formatting behaviors.",
  },
  command = "pyink",
  args = {
    "--stdin-filename",
    "$FILENAME",
    "--quiet",
    "-",
  },
  stdin = true,
}