tools
tools copied to clipboard
[mirror] Go Tools
The definition of 'write access' is same as it in GoLand. Some examples are access to variables in declaration, assignment(left value), self increasing, channel sending and composite literal. The algorithm...
ctrlflow Analyzer has a list of intrinsic no-return functions such as "syscall.Exit" but not higher-level standard library functions like "os.Exit". It relies on actually analyzing those functions (which internally will...
- Removed Command.Test function as it was a legacy code.
- Changes the clear postfix to use the clear function introduced in Go 1.21 - Add support for slices for the clear postfix
Add capability for goimports to use module path from go.mod as local prefix
Fixes https://github.com/golang/go/issues/67663
gopls will correctly convert a string argument to a []byte/[]rune argument, however it will not check if the the target is also variadic.
gopls is commonly used in Zed, therefore add it to the docs as suggested.
The filter accepts a comma-separated list of categories (or categories negated with `-`) and then only reports diagnostics with categories in that set (or its complement). Fixes golang/go#72008