We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2346d commit 7e87ae9Copy full SHA for 7e87ae9
2 files changed
README.md
@@ -12,6 +12,7 @@
12
- [biome](https://biomejs.dev)
13
- [cbfmt](https://github.com/lukas-reineke/cbfmt)
14
- [clang-format](https://www.kernel.org/doc/html/latest/process/clang-format.html)
15
+- [cljfmt](https://github.com/weavejester/cljfmt)
16
- [csharpier](https://csharpier.com/)
17
- [dart](https://github.com/dart-lang)
18
- [djhtml](https://github.com/rtts/djhtml)
lua/guard-collection/formatter.lua
@@ -35,6 +35,12 @@ M['clang-format'] = {
35
stdin = true,
36
}
37
38
+M.cljfmt = {
39
+ cmd = 'cljfmt',
40
+ args = { 'fix', '-' },
41
+ stdin = true,
42
+}
43
+
44
M.csharpier = {
45
cmd = 'dotnet-csharpier',
46
args = { '--write-stdout' },
0 commit comments