We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c86a7 commit 5bfccbcCopy full SHA for 5bfccbc
2 files changed
README.md
@@ -22,6 +22,7 @@
22
- [ ] [fnlfmt](https://git.sr.ht/~technomancy/fnlfmt)
23
- [x] [gofmt](https://pkg.go.dev/cmd/gofmt)
24
- [x] [gofumpt](https://pkg.go.dev/mvdan.cc/gofumpt)
25
+- [ ] [goimports](https://pkg.go.dev/golang.org/x/tools/cmd/goimports)
26
- [x] [golines](https://pkg.go.dev/github.com/segmentio/golines)
27
- [ ] [google-java-format](https://github.com/google/google-java-format)
28
- [ ] [isort](https://github.com/PyCQA/isort)
lua/guard-collection/formatter.lua
@@ -322,4 +322,9 @@ M.jq = {
322
stdin = true,
323
}
324
325
+M.goimports = {
326
+ cmd = 'goimports',
327
+ stdin = true,
328
+}
329
+
330
return M
0 commit comments