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