Skip to content

Commit 7394d49

Browse files
authored
feat: support crlfmt (nvim-lua#470)
1 parent c35f52b commit 7394d49

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lua/conform/formatters/crlfmt.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---@type conform.FileFormatterConfig
2+
return {
3+
meta = {
4+
url = "https://github.com/cockroachdb/crlfmt",
5+
description = "Formatter for CockroachDB's additions to the Go style guide.",
6+
},
7+
command = "crlfmt",
8+
args = { "-w", "$FILENAME" },
9+
stdin = false,
10+
}

0 commit comments

Comments
 (0)