| Name | Synopsis |
|---|---|
| .. | |
| asmdecl | Package asmdecl defines an Analyzer that reports mismatches between assembly files and Go declarations. |
| assign | Package assign defines an Analyzer that detects useless assignments. |
| atomic | Package atomic defines an Analyzer that checks for common mistakes using the sync/atomic package. |
| atomicalign | Package atomicalign defines an Analyzer that checks for non-64-bit-aligned arguments to sync/atomic functions. |
| bools | Package bools defines an Analyzer that detects common mistakes involving boolean operators. |
| buildssa | Package buildssa defines an Analyzer that constructs the SSA representation of an error-free package and returns the set of all functions within it. |
| buildtag | Package buildtag defines an Analyzer that checks build tags. |
| cgocall | Package cgocall defines an Analyzer that detects some violations of the cgo pointer passing rules. |
| composite | Package composite defines an Analyzer that checks for unkeyed composite literals. |
| copylock | Package copylock defines an Analyzer that checks for locks erroneously passed by value. |
| ctrlflow | Package ctrlflow is an analysis that provides a syntactic control-flow graph (CFG) for the body of a function. |
| deepequalerrors | Package deepequalerrors defines an Analyzer that checks for the use of reflect.DeepEqual with error values. |
| errorsas | The errorsas package defines an Analyzer that checks that the second argument to errors.As is a pointer to a type implementing error. |
| findcall | |
| cmd | |
| findcall | The findcall command runs the findcall analyzer. |
| httpresponse | Package httpresponse defines an Analyzer that checks for mistakes using HTTP responses. |
| inspect | Package inspect defines an Analyzer that provides an AST inspector (golang.org/x/tools/go/ast/inspect.Inspect) for the syntax trees of a package. |
| loopclosure | Package loopclosure defines an Analyzer that checks for references to enclosing loop variables from within nested functions. |
| lostcancel | Package lostcancel defines an Analyzer that checks for failure to call a context cancellation function. |
| cmd | |
| lostcancel | The lostcancel command applies the golang.org/x/tools/go/analysis/passes/lostcancel analysis to the specified packages of Go source code. |
| nilfunc | Package nilfunc defines an Analyzer that checks for useless comparisons against nil. |
| nilness | Package nilness inspects the control-flow graph of an SSA function and reports errors such as nil pointer dereferences and degenerate nil pointer comparisons. |
| cmd | |
| nilness | The nilness command applies the golang.org/x/tools/go/analysis/passes/nilness analysis to the specified packages of Go source code. |
| pkgfact | The pkgfact package is a demonstration and test of the package fact mechanism. |
| printf | |
| shadow | |
| cmd | |
| shadow | The shadow command runs the shadow analyzer. |
| shift | Package shift defines an Analyzer that checks for shifts that exceed the width of an integer. |
| sortslice | Package sortslice defines an Analyzer that checks for calls to sort.Slice that do not use a slice type as first argument. |
| stdmethods | Package stdmethods defines an Analyzer that checks for misspellings in the signatures of methods similar to well-known interfaces. |
| structtag | Package structtag defines an Analyzer that checks struct field tags are well formed. |
| tests | Package tests defines an Analyzer that checks for common mistaken usages of tests and examples. |
| unmarshal | The unmarshal package defines an Analyzer that checks for passing non-pointer or non-interface types to unmarshal and decode functions. |
| cmd | |
| unmarshal | The unmarshal command runs the unmarshal analyzer. |
| unreachable | Package unreachable defines an Analyzer that checks for unreachable code. |
| unsafeptr | Package unsafeptr defines an Analyzer that checks for invalid conversions of uintptr to unsafe.Pointer. |
| unusedresult | Package unusedresult defines an analyzer that checks for unused results of calls to certain pure functions. |