Skip to content

Commit 7e87ae9

Browse files
committed
feat: add cljfmt
1 parent 8e2346d commit 7e87ae9

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- [biome](https://biomejs.dev)
1313
- [cbfmt](https://github.com/lukas-reineke/cbfmt)
1414
- [clang-format](https://www.kernel.org/doc/html/latest/process/clang-format.html)
15+
- [cljfmt](https://github.com/weavejester/cljfmt)
1516
- [csharpier](https://csharpier.com/)
1617
- [dart](https://github.com/dart-lang)
1718
- [djhtml](https://github.com/rtts/djhtml)

lua/guard-collection/formatter.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ M['clang-format'] = {
3535
stdin = true,
3636
}
3737

38+
M.cljfmt = {
39+
cmd = 'cljfmt',
40+
args = { 'fix', '-' },
41+
stdin = true,
42+
}
43+
3844
M.csharpier = {
3945
cmd = 'dotnet-csharpier',
4046
args = { '--write-stdout' },

0 commit comments

Comments
 (0)