gofumpt | goimports | |
---|---|---|
15 | 48 | |
3,366 | 7,414 | |
- | 0.4% | |
6.5 | 9.8 | |
4 months ago | 5 days ago | |
Go | Go | |
BSD 3-clause "New" or "Revised" License | BSD 3-clause "New" or "Revised" License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
gofumpt
- Defining your variables in your return?
- Gofumpt: A stricter gofmt
- gofumpt: A stricter gofmt
-
Gofumpt: It's like gofmt except more strict
In the roadmap section[1] the author says it's more of an experiment with a possibility that some of the rules might end up in the original 'gofmt' tool. While I agree that Go having a de facto formatter built in is wonderful, there are some absolutely fantastic additions in 'gofumpt' that I do hope wind up in 'gofmt'
---
[1]: https://github.com/mvdan/gofumpt#roadmap
-
Is there any reason not to use go fmt?
No. If you want more strict formatting, you can use https://github.com/mvdan/gofumpt. Apart from using that, there is literally no reason not to use it.
-
go-global-update - the missing command for updating globally installed go executables
I am the author of go-global-update, the missing command to update globally installed go executables (like gofumpt, gopls, gotop, and other CLI tools you may have installed globally in your system - in your GOBIN directory).
-
setting up emacs for go programming language
I think that the one tool that might still be useful outside of gopls is goimports. It can be used as a gofmt replacement, that also automatically manages and removes imports. Gopls can integrate staticcheck and gofumpt, but my understanding is that they have to be installed manually. See the settings section for more on that(1).
-
Is there a better alternative to `gofmt`?
I use gofumpt but I'm pretty sure it doesn't wrap either (and I don't want it to so we're good)
goimports
-
Mastering Golang Debugging in Emacs
For Emacs 29+ users, eglot is built-in. Check out configuring eglot for gopls and some more advanced gopls settings. We'll first add dape:
-
Secure Randomness in Go 1.22
goimports has special-cased math/rand.Read vs crypto/rand.Read from basically the beginning. But https://github.com/golang/tools/commit/0835c735343e0d8e375f0... in 2016 references a time window where it could resolve "rand.Read" as "math/rand". Maybe you were in that time window?
- Gopls/v0.15.0
-
How to find all methods which return struct "Foo" (vscode or cli)
Just a guess, but it might be somewhere in gopls https://github.com/golang/tools/tree/master/gopls/doc On this page https://langserver.org/ it says it should support "finding references"
- Major rewrite of gopls released (2 weeks ago)
-
What LSP are y'all using?
Language server protocol. Here’s a good one: https://github.com/golang/tools/blob/master/gopls/README.md
-
Can Someone Explain To Me Like I'm 5
gopls was not able to find modules in your workspace.When outside of GOPATH, gopls needs to know which modules you are working on.You can fix this by opening your workspace to a folder inside a Go module, orby using a go.work file to specify multiple modules.See the documentation for more information on setting up your workspace:https://github.com/golang/tools/blob/master/gopls/doc/workspace.md.
- Latest gopls version still v0.11.0 from December 22?
- GitHub - orijtech/structslop: structslop is a static analyzer for Go that recommends struct field rearrangements to provide for maximum space/allocation efficiency.
-
betteralign - structs field alignment static analyzer for Go
For more gopls settings, you can see files in this folder: https://github.com/golang/tools/tree/master/gopls/doc
What are some alternatives?
goimports-reviser - Right imports sorting & code formatting tool (goimports alternative)
nvim-lspconfig - Quickstart configs for Nvim LSP
GNU/Emacs go-mode - Emacs mode for the Go programming language
goreturns - A gofmt/goimports-like tool for Go programmers that fills in Go return statements with zero values to match the func return types
golangci-lint - Fast linters runner for Go
GoLint - [mirror] This is a linter for Go source code. (deprecated)
revive - 🔥 ~6x faster, stricter, configurable, extensible, and beautiful drop-in replacement for golint
golines - A golang formatter that fixes long lines
pre-commit-golang - Pre-commit hooks for Golang with support for monorepos, the ability to pass arguments and environment variables to all hooks, and the ability to invoke custom go tools.
staticcheck
go-tools - Staticcheck - The advanced Go linter
go-checkstyle - checkstyle for go