gopls/doc: generate documentation for analyzers

Analyzers are configured in the internal/lsp/source/options.go file as
well as settings, and we can generate documentation for them without
even using reflection. We add documentaton for each analyzer and list
whether or not it is enabled by default.

Change-Id: If0ffcd422f3f4a99ca3645c35197925ea1cc1616
Reviewed-on: https://go-review.googlesource.com/c/tools/+/280352
Trust: Rebecca Stambler <rstambler@golang.org>
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
gopls-CI: kokoro <noreply+kokoro@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Suzy Mueller <suzmue@golang.org>
This commit is contained in:
Rebecca Stambler 2020-12-25 15:10:04 -05:00
parent 84d76fe320
commit fbbba25c5f
4 changed files with 570 additions and 303 deletions

View File

@ -1,64 +1,58 @@
# Analyzers
<!--TODO: Generate this file from the documentation in golang/org/x/tools/go/analysis/passes and golang/org/x/tools/go/lsp/source/options.go.-->
This document describes the analyzers that `gopls` uses inside the editor.
A value of `true` means that the analyzer is enabled by default and a value of `false` means it is disabled by default.
Details about how to enable/disable these analyses can be found
[here](settings.md#analyses).
Details about how to enable/disable these analyses can be found [here](settings.md#analyses).
## Go vet suite
Below is the list of general analyzers that are used in `go vet`.
### **asmdecl**
<!-- BEGIN Analyzers: DO NOT MANUALLY EDIT THIS SECTION -->
## **asmdecl**
report mismatches between assembly files and Go declarations
Default value: `true`.
**Enabled by default.**
### **assign**
## **assign**
check for useless assignments
This checker reports assignments of the form `x = x` or `a[i] = a[i]`.
This checker reports assignments of the form x = x or a[i] = a[i].
These are almost always useless, and even when they aren't they are
usually a mistake.
Default value: `true`.
**Enabled by default.**
### **atomic**
## **atomic**
check for common mistakes using the sync/atomic package
The atomic checker looks for assignment statements of the form:
`x = atomic.AddUint64(&x, 1)`
x = atomic.AddUint64(&x, 1)
which are not atomic.
Default value: `true`.
**Enabled by default.**
### **atomicalign**
## **atomicalign**
check for non-64-bits-aligned arguments to sync/atomic functions
Default value: `true`.
**Enabled by default.**
### **bools**
## **bools**
check for common mistakes involving boolean operators
Default value: `true`.
**Enabled by default.**
### **buildtag**
## **buildtag**
check that +build tags are well-formed and correctly located
Default value: `true`.
**Enabled by default.**
### **cgocall**
## **cgocall**
detect some violations of the cgo pointer passing rules
@ -69,9 +63,9 @@ sharing rules.
Specifically, it warns about attempts to pass a Go chan, map, func,
or slice to C, either directly, or via a pointer, array, or struct.
Default value: `true`.
**Enabled by default.**
### **composites**
## **composites**
check for unkeyed composite literals
@ -81,14 +75,17 @@ syntax. Such literals are fragile because the addition of a new field
(even if unexported) to the struct will cause compilation to fail.
As an example,
`err = &net.DNSConfigError{err}`
err = &net.DNSConfigError{err}
should be replaced by:
`err = &net.DNSConfigError{Err: err}`
Default value: `true`.
err = &net.DNSConfigError{Err: err}
### **copylock**
**Enabled by default.**
## **copylocks**
check for locks erroneously passed by value
@ -96,18 +93,41 @@ Inadvertently copying a value containing a lock, such as sync.Mutex or
sync.WaitGroup, may cause both copies to malfunction. Generally such
values should be referred to through a pointer.
Default value: `true`.
**Enabled by default.**
### **errorsas**
## **deepequalerrors**
check for calls of reflect.DeepEqual on error values
The deepequalerrors checker looks for calls of the form:
reflect.DeepEqual(err1, err2)
where err1 and err2 are errors. Using reflect.DeepEqual to compare
errors is discouraged.
**Enabled by default.**
## **errorsas**
report passing non-pointer or non-error values to errors.As
The errorsas analysis reports calls to errors.As where the type
of the second argument is not a pointer to a type implementing error.
Default value: `true`.
**Enabled by default.**
### **httpresponse**
## **fieldalignment**
find structs that would take less memory if their fields were sorted
This analyzer find structs that can be rearranged to take less memory, and provides
a suggested edit with the optimal order.
**Disabled by default. Enable it by setting `"analyses": {"fieldalignment": true}`.**
## **httpresponse**
check for mistakes using HTTP responses
@ -115,21 +135,39 @@ A common mistake when using the net/http package is to defer a function
call to close the http.Response Body before checking the error that
determines whether the response is valid:
```go
resp, err := http.Head(url)
defer resp.Body.Close()
if err != nil {
log.Fatal(err)
}
// (defer statement belongs here)
```
resp, err := http.Head(url)
defer resp.Body.Close()
if err != nil {
log.Fatal(err)
}
// (defer statement belongs here)
This checker helps uncover latent nil dereference bugs by reporting a
diagnostic for such mistakes.
Default value: `true`.
**Enabled by default.**
### **loopclosure**
## **ifaceassert**
detect impossible interface-to-interface type assertions
This checker flags type assertions v.(T) and corresponding type-switch cases
in which the static type V of v is an interface that cannot possibly implement
the target interface T. This occurs when V and T contain methods with the same
name but different signatures. Example:
var v interface {
Read()
}
_ = v.(io.Reader)
The Read method in v has a different signature than the Read method in
io.Reader, so this assertion cannot succeed.
**Enabled by default.**
## **loopclosure**
check references to loop variables from within nested functions
@ -140,19 +178,18 @@ last statement in the loop body, as otherwise we would need whole
program analysis.
For example:
```go
for i, v := range s {
go func() {
println(i, v) // not what you might expect
}()
}
```
for i, v := range s {
go func() {
println(i, v) // not what you might expect
}()
}
See: https://golang.org/doc/go_faq.html#closures_and_goroutines
Default value: `true`.
**Enabled by default.**
### **lostcancel**
## **lostcancel**
check cancel func returned by context.WithCancel is called
@ -161,17 +198,17 @@ and WithDeadline must be called or the new context will remain live
until its parent context is cancelled.
(The background context is never cancelled.)
Default value: `true`.
**Enabled by default.**
### **nilfunc**
## **nilfunc**
check for useless comparisons between functions and nil
A useless comparison is one like f == nil as opposed to f() == nil.
Default value: `true`.
**Enabled by default.**
### **printf**
## **printf**
check consistency of Printf format strings and arguments
@ -182,21 +219,17 @@ A function that wants to avail itself of printf checking but is not
found by this analyzer's heuristics (for example, due to use of
dynamic calls) can insert a bogus call:
```go
if false {
_ = fmt.Sprintf(format, args...) // enable printf checking
}
```
if false {
_ = fmt.Sprintf(format, args...) // enable printf checking
}
The -funcs flag specifies a comma-separated list of names of additional
known formatting functions or methods. If the name contains a period,
it must denote a specific function using one of the following forms:
```
dir/pkg.Function
dir/pkg.Type.Method
(*dir/pkg.Type).Method
```
Otherwise the name is interpreted as a case-insensitive unqualified
identifier such as "errorf". Either way, if a listed name ends in f, the
@ -204,15 +237,99 @@ function is assumed to be Printf-like, taking a format string before the
argument list. Otherwise it is assumed to be Print-like, taking a list
of arguments with no format string.
Default value: `true`.
### **shift**
**Enabled by default.**
## **shadow**
check for possible unintended shadowing of variables
This analyzer check for shadowed variables.
A shadowed variable is a variable declared in an inner scope
with the same name and type as a variable in an outer scope,
and where the outer variable is mentioned after the inner one
is declared.
(This definition can be refined; the module generates too many
false positives and is not yet enabled by default.)
For example:
func BadRead(f *os.File, buf []byte) error {
var err error
for {
n, err := f.Read(buf) // shadows the function variable 'err'
if err != nil {
break // causes return of wrong value
}
foo(buf)
}
return err
}
**Disabled by default. Enable it by setting `"analyses": {"shadow": true}`.**
## **shift**
check for shifts that equal or exceed the width of the integer
Default value: `true`.
**Enabled by default.**
### **stdmethods**
## **simplifycompositelit**
check for composite literal simplifications
An array, slice, or map composite literal of the form:
[]T{T{}, T{}}
will be simplified to:
[]T{{}, {}}
This is one of the simplifications that "gofmt -s" applies.
**Enabled by default.**
## **simplifyrange**
check for range statement simplifications
A range of the form:
for x, _ = range v {...}
will be simplified to:
for x = range v {...}
A range of the form:
for _ = range v {...}
will be simplified to:
for range v {...}
This is one of the simplifications that "gofmt -s" applies.
**Enabled by default.**
## **simplifyslice**
check for slice simplifications
A slice expression of the form:
s[a:len(s)]
will be simplified to:
s[a:]
This is one of the simplifications that "gofmt -s" applies.
**Enabled by default.**
## **sortslice**
check the argument type of sort.Slice
sort.Slice requires an argument of a slice type. Check that
the interface{} value passed to sort.Slice is actually a slice.
**Enabled by default.**
## **stdmethods**
check signature of methods of well-known interfaces
@ -221,10 +338,8 @@ do so because of a mistake in its method signature.
For example, the result of this WriteTo method should be (int64, error),
not error, to satisfy io.WriterTo:
```go
type myWriterTo struct{...}
func (myWriterTo) WriteTo(w io.Writer) error { ... }
```
This check ensures that each method whose name matches one of several
well-known interface methods from the standard library has the correct
@ -236,17 +351,53 @@ Checked method names include:
UnmarshalJSON UnreadByte UnreadRune WriteByte
WriteTo
Default value: `true`.
### **structtag**
**Enabled by default.**
## **stringintconv**
check for string(int) conversions
This checker flags conversions of the form string(x) where x is an integer
(but not byte or rune) type. Such conversions are discouraged because they
return the UTF-8 representation of the Unicode code point x, and not a decimal
string representation of x as one might expect. Furthermore, if x denotes an
invalid code point, the conversion cannot be statically rejected.
For conversions that intend on using the code point, consider replacing them
with string(rune(x)). Otherwise, strconv.Itoa and its equivalents return the
string representation of the value in the desired base.
**Enabled by default.**
## **structtag**
check that struct field tags conform to reflect.StructTag.Get
Also report certain struct tags (json, xml) used with unexported fields.
Default value: `true`.
**Enabled by default.**
### **tests**
## **testinggoroutine**
report calls to (*testing.T).Fatal from goroutines started by a test.
Functions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and
Skip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.
This checker detects calls to these functions that occur within a goroutine
started by the test. For example:
func TestFoo(t *testing.T) {
go func() {
t.Fatal("oops") // error: (*T).Fatal called from non-test goroutine
}()
}
**Enabled by default.**
## **tests**
check for common mistaken usages of tests and examples
@ -257,18 +408,18 @@ identifiers.
Please see the documentation for package testing in golang.org/pkg/testing
for the conventions that are enforced for Tests, Benchmarks, and Examples.
Default value: `true`.
**Enabled by default.**
### **unmarshal**
## **unmarshal**
report passing non-pointer or non-interface values to unmarshal
The unmarshal analysis reports calls to functions such as json.Unmarshal
in which the argument type is not a pointer or an interface.
Default value: `true`.
**Enabled by default.**
### **unreachable**
## **unreachable**
check for unreachable code
@ -276,9 +427,9 @@ The unreachable analyzer finds statements that execution can never reach
because they are preceded by an return statement, a call to panic, an
infinite loop, or similar constructs.
Default value: `true`.
**Enabled by default.**
### **unsafeptr**
## **unsafeptr**
check for invalid conversions of uintptr to unsafe.Pointer
@ -288,226 +439,9 @@ unsafe.Pointer is invalid if it implies that there is a uintptr-typed
word in memory that holds a pointer value, because that word will be
invisible to stack copying and to the garbage collector.
Default value: `true`.
**Enabled by default.**
### **unusedresult**
check for unused results of calls to some functions
Some functions like fmt.Errorf return a result and have no side effects,
so it is always a mistake to discard the result. This analyzer reports
calls to certain functions in which the result of the call is ignored.
The set of functions may be controlled using flags.
Default value: `true`.
## gopls suite
Below is the list of analyzers that are used by `gopls`.
### **deepequalerrors**
check for calls of reflect.DeepEqual on error values
The deepequalerrors checker looks for calls of the form:
```go
reflect.DeepEqual(err1, err2)
```
where err1 and err2 are errors. Using reflect.DeepEqual to compare
errors is discouraged.
Default value: `true`.
### **fieldalignment**
This analyzer find structs that can be rearranged to take less memory, and provides
a suggested edit with the optimal order.
Default value: `false`.
### **fillreturns**
suggested fixes for "wrong number of return values (want %d, got %d)"
This checker provides suggested fixes for type errors of the
type "wrong number of return values (want %d, got %d)". For example:
```go
func m() (int, string, *bool, error) {
return
}
```
will turn into
```go
func m() (int, string, *bool, error) {
return 0, "", nil, nil
}
```
This functionality is similar to [goreturns](https://github.com/sqs/goreturns).
Default value: `false`.
### **nonewvars**
suggested fixes for "no new vars on left side of :="
This checker provides suggested fixes for type errors of the
type "no new vars on left side of :=". For example:
```go
z := 1
z := 2
```
will turn into
```go
z := 1
z = 2
```
Default value: `false`.
### **noresultvalues**
suggested fixes for "no result values expected"
This checker provides suggested fixes for type errors of the
type "no result values expected". For example:
```go
func z() { return nil }
```
will turn into
```go
func z() { return }
```
Default value: `true`.
### **simplifycompositelit**
check for composite literal simplifications
An array, slice, or map composite literal of the form:
```go
[]T{T{}, T{}}
```
will be simplified to:
```go
[]T{{}, {}}
```
This is one of the simplifications that "gofmt -s" applies.
Default value: `true`.
### **simplifyrange**
check for range statement simplifications
A range of the form:
```go
for x, _ = range v {...}
```
will be simplified to:
```go
for x = range v {...}
```
A range of the form:
```go
for _ = range v {...}
```
will be simplified to:
```go
for range v {...}
```
This is one of the simplifications that "gofmt -s" applies.
Default value: `true`.
### **shadow**
check for shadowed variables. A shadowed variable is a variable
declared in an inner scope with the same name and type as a variable in
an outer scope, and where the outer variable is mentioned after the
inner one is declared.
For example:
```go
func BadRead(f *os.File, buf []byte) error {
var err error
for {
n, err := f.Read(buf) // shadows the function variable 'err'
if err != nil {
break // causes return of wrong value
}
foo(buf)
}
return err
}
```
Default value: `false`.
### **simplifyslice**
check for slice simplifications
A slice expression of the form:
```go
s[a:len(s)]
```
will be simplified to:
```go
s[a:]
```
This is one of the simplifications that "gofmt -s" applies.
Default value: `true`.
### **sortslice**
check the argument type of sort.Slice
sort.Slice requires an argument of a slice type. Check that
the interface{} value passed to sort.Slice is actually a slice.
Default value: `true`.
### **testinggoroutine**
report calls to (*testing.T).Fatal from goroutines started by a test.
Functions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and
Skip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.
This checker detects calls to these functions that occur within a goroutine
started by the test. For example:
```go
func TestFoo(t *testing.T) {
go func() {
t.Fatal("oops") // error: (*T).Fatal called from non-test goroutine
}()
}
```
Default value: `true`.
### **undeclaredname**
suggested fixes for "undeclared name: <>"
This checker provides suggested fixes for type errors of the
type `undeclared name: <>`. It will insert a new statement:
`<> := `.
Default value: `false`.
### **unusedparams**
## **unusedparams**
check for unused parameters of functions
@ -520,4 +454,87 @@ To reduce false positives it ignores:
- functions in test files
- functions with empty bodies or those with just a return stmt
Default value: `false`.
**Disabled by default. Enable it by setting `"analyses": {"unusedparams": true}`.**
## **unusedresult**
check for unused results of calls to some functions
Some functions like fmt.Errorf return a result and have no side effects,
so it is always a mistake to discard the result. This analyzer reports
calls to certain functions in which the result of the call is ignored.
The set of functions may be controlled using flags.
**Enabled by default.**
## **fillreturns**
suggested fixes for "wrong number of return values (want %d, got %d)"
This checker provides suggested fixes for type errors of the
type "wrong number of return values (want %d, got %d)". For example:
func m() (int, string, *bool, error) {
return
}
will turn into
func m() (int, string, *bool, error) {
return 0, "", nil, nil
}
This functionality is similar to https://github.com/sqs/goreturns.
**Enabled by default.**
## **nonewvars**
suggested fixes for "no new vars on left side of :="
This checker provides suggested fixes for type errors of the
type "no new vars on left side of :=". For example:
z := 1
z := 2
will turn into
z := 1
z = 2
**Enabled by default.**
## **noresultvalues**
suggested fixes for "no result values expected"
This checker provides suggested fixes for type errors of the
type "no result values expected". For example:
func z() { return nil }
will turn into
func z() { return }
**Enabled by default.**
## **undeclaredname**
suggested fixes for "undeclared name: <>"
This checker provides suggested fixes for type errors of the
type "undeclared name: <>". It will insert a new statement:
"<> := ".
**Enabled by default.**
## **fillstruct**
note incomplete struct initializations
This analyzer provides diagnostics for any struct literals that do not have
any fields initialized. Because the suggested fix for this analysis is
expensive to compute, callers should compute it separately, using the
SuggestedFix function below.
**Enabled by default.**
<!-- END Analyzers: DO NOT MANUALLY EDIT THIS SECTION -->

View File

@ -19,6 +19,7 @@ import (
"path/filepath"
"reflect"
"regexp"
"sort"
"strings"
"time"
@ -51,6 +52,9 @@ func doMain(baseDir string, write bool) (bool, error) {
if ok, err := rewriteFile(filepath.Join(baseDir, "gopls/doc/commands.md"), api, write, rewriteCommands); !ok || err != nil {
return ok, err
}
if ok, err := rewriteFile(filepath.Join(baseDir, "gopls/doc/analyzers.md"), api, write, rewriteAnalyzers); !ok || err != nil {
return ok, err
}
return true, nil
}
@ -94,6 +98,14 @@ func loadAPI() (*source.APIJSON, error) {
for _, c := range api.Commands {
c.Command = source.CommandPrefix + c.Command
}
for _, m := range []map[string]source.Analyzer{
defaults.DefaultAnalyzers,
defaults.TypeErrorAnalyzers,
defaults.ConvenienceAnalyzers,
// Don't yet add staticcheck analyzers.
} {
api.Analyzers = append(api.Analyzers, loadAnalyzers(m)...)
}
return api, nil
}
@ -320,6 +332,24 @@ func loadLenses(commands []*source.CommandJSON) []*source.LensJSON {
return lenses
}
func loadAnalyzers(m map[string]source.Analyzer) []*source.AnalyzerJSON {
var sorted []string
for _, a := range m {
sorted = append(sorted, a.Analyzer.Name)
}
sort.Strings(sorted)
var json []*source.AnalyzerJSON
for _, name := range sorted {
a := m[name]
json = append(json, &source.AnalyzerJSON{
Name: a.Analyzer.Name,
Doc: a.Analyzer.Doc,
Default: a.Enabled,
})
}
return json
}
func lowerFirst(x string) string {
if x == "" {
return x
@ -369,6 +399,7 @@ func rewriteAPI(input []byte, api *source.APIJSON) ([]byte, error) {
apiStr = strings.ReplaceAll(apiStr, ": []*OptionJSON", ":")
apiStr = strings.ReplaceAll(apiStr, "&CommandJSON", "")
apiStr = strings.ReplaceAll(apiStr, "&LensJSON", "")
apiStr = strings.ReplaceAll(apiStr, "&AnalyzerJSON", "")
apiStr = strings.ReplaceAll(apiStr, " EnumValue{", "{")
apiBytes, err := format.Source([]byte(apiStr))
if err != nil {
@ -431,6 +462,21 @@ func rewriteCommands(doc []byte, api *source.APIJSON) ([]byte, error) {
return replaceSection(doc, "Commands", section.Bytes())
}
func rewriteAnalyzers(doc []byte, api *source.APIJSON) ([]byte, error) {
section := bytes.NewBuffer(nil)
for _, analyzer := range api.Analyzers {
fmt.Fprintf(section, "## **%v**\n\n", analyzer.Name)
fmt.Fprintf(section, "%s\n\n", analyzer.Doc)
switch analyzer.Default {
case true:
fmt.Fprintf(section, "**Enabled by default.**\n\n")
case false:
fmt.Fprintf(section, "**Disabled by default. Enable it by setting `\"analyses\": {\"%s\": true}`.**\n\n", analyzer.Name)
}
}
return replaceSection(doc, "Analyzers", section.Bytes())
}
func replaceSection(doc []byte, sectionName string, replacement []byte) ([]byte, error) {
re := regexp.MustCompile(fmt.Sprintf(`(?s)<!-- BEGIN %v.* -->\n(.*?)<!-- END %v.* -->`, sectionName, sectionName))
idx := re.FindSubmatchIndex(doc)

View File

@ -402,4 +402,201 @@ var GeneratedAPIJSON = &APIJSON{
Doc: "gc_details controls calculation of gc annotations.\n",
},
},
Analyzers: []*AnalyzerJSON{
{
Name: "asmdecl",
Doc: "report mismatches between assembly files and Go declarations",
Default: true,
},
{
Name: "assign",
Doc: "check for useless assignments\n\nThis checker reports assignments of the form x = x or a[i] = a[i].\nThese are almost always useless, and even when they aren't they are\nusually a mistake.",
Default: true,
},
{
Name: "atomic",
Doc: "check for common mistakes using the sync/atomic package\n\nThe atomic checker looks for assignment statements of the form:\n\n\tx = atomic.AddUint64(&x, 1)\n\nwhich are not atomic.",
Default: true,
},
{
Name: "atomicalign",
Doc: "check for non-64-bits-aligned arguments to sync/atomic functions",
Default: true,
},
{
Name: "bools",
Doc: "check for common mistakes involving boolean operators",
Default: true,
},
{
Name: "buildtag",
Doc: "check that +build tags are well-formed and correctly located",
Default: true,
},
{
Name: "cgocall",
Doc: "detect some violations of the cgo pointer passing rules\n\nCheck for invalid cgo pointer passing.\nThis looks for code that uses cgo to call C code passing values\nwhose types are almost always invalid according to the cgo pointer\nsharing rules.\nSpecifically, it warns about attempts to pass a Go chan, map, func,\nor slice to C, either directly, or via a pointer, array, or struct.",
Default: true,
},
{
Name: "composites",
Doc: "check for unkeyed composite literals\n\nThis analyzer reports a diagnostic for composite literals of struct\ntypes imported from another package that do not use the field-keyed\nsyntax. Such literals are fragile because the addition of a new field\n(even if unexported) to the struct will cause compilation to fail.\n\nAs an example,\n\n\terr = &net.DNSConfigError{err}\n\nshould be replaced by:\n\n\terr = &net.DNSConfigError{Err: err}\n",
Default: true,
},
{
Name: "copylocks",
Doc: "check for locks erroneously passed by value\n\nInadvertently copying a value containing a lock, such as sync.Mutex or\nsync.WaitGroup, may cause both copies to malfunction. Generally such\nvalues should be referred to through a pointer.",
Default: true,
},
{
Name: "deepequalerrors",
Doc: "check for calls of reflect.DeepEqual on error values\n\nThe deepequalerrors checker looks for calls of the form:\n\n reflect.DeepEqual(err1, err2)\n\nwhere err1 and err2 are errors. Using reflect.DeepEqual to compare\nerrors is discouraged.",
Default: true,
},
{
Name: "errorsas",
Doc: "report passing non-pointer or non-error values to errors.As\n\nThe errorsas analysis reports calls to errors.As where the type\nof the second argument is not a pointer to a type implementing error.",
Default: true,
},
{
Name: "fieldalignment",
Doc: "find structs that would take less memory if their fields were sorted\n\nThis analyzer find structs that can be rearranged to take less memory, and provides\na suggested edit with the optimal order.\n",
Default: false,
},
{
Name: "httpresponse",
Doc: "check for mistakes using HTTP responses\n\nA common mistake when using the net/http package is to defer a function\ncall to close the http.Response Body before checking the error that\ndetermines whether the response is valid:\n\n\tresp, err := http.Head(url)\n\tdefer resp.Body.Close()\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\t// (defer statement belongs here)\n\nThis checker helps uncover latent nil dereference bugs by reporting a\ndiagnostic for such mistakes.",
Default: true,
},
{
Name: "ifaceassert",
Doc: "detect impossible interface-to-interface type assertions\n\nThis checker flags type assertions v.(T) and corresponding type-switch cases\nin which the static type V of v is an interface that cannot possibly implement\nthe target interface T. This occurs when V and T contain methods with the same\nname but different signatures. Example:\n\n\tvar v interface {\n\t\tRead()\n\t}\n\t_ = v.(io.Reader)\n\nThe Read method in v has a different signature than the Read method in\nio.Reader, so this assertion cannot succeed.\n",
Default: true,
},
{
Name: "loopclosure",
Doc: "check references to loop variables from within nested functions\n\nThis analyzer checks for references to loop variables from within a\nfunction literal inside the loop body. It checks only instances where\nthe function literal is called in a defer or go statement that is the\nlast statement in the loop body, as otherwise we would need whole\nprogram analysis.\n\nFor example:\n\n\tfor i, v := range s {\n\t\tgo func() {\n\t\t\tprintln(i, v) // not what you might expect\n\t\t}()\n\t}\n\nSee: https://golang.org/doc/go_faq.html#closures_and_goroutines",
Default: true,
},
{
Name: "lostcancel",
Doc: "check cancel func returned by context.WithCancel is called\n\nThe cancellation function returned by context.WithCancel, WithTimeout,\nand WithDeadline must be called or the new context will remain live\nuntil its parent context is cancelled.\n(The background context is never cancelled.)",
Default: true,
},
{
Name: "nilfunc",
Doc: "check for useless comparisons between functions and nil\n\nA useless comparison is one like f == nil as opposed to f() == nil.",
Default: true,
},
{
Name: "printf",
Doc: "check consistency of Printf format strings and arguments\n\nThe check applies to known functions (for example, those in package fmt)\nas well as any detected wrappers of known functions.\n\nA function that wants to avail itself of printf checking but is not\nfound by this analyzer's heuristics (for example, due to use of\ndynamic calls) can insert a bogus call:\n\n\tif false {\n\t\t_ = fmt.Sprintf(format, args...) // enable printf checking\n\t}\n\nThe -funcs flag specifies a comma-separated list of names of additional\nknown formatting functions or methods. If the name contains a period,\nit must denote a specific function using one of the following forms:\n\n\tdir/pkg.Function\n\tdir/pkg.Type.Method\n\t(*dir/pkg.Type).Method\n\nOtherwise the name is interpreted as a case-insensitive unqualified\nidentifier such as \"errorf\". Either way, if a listed name ends in f, the\nfunction is assumed to be Printf-like, taking a format string before the\nargument list. Otherwise it is assumed to be Print-like, taking a list\nof arguments with no format string.\n",
Default: true,
},
{
Name: "shadow",
Doc: "check for possible unintended shadowing of variables\n\nThis analyzer check for shadowed variables.\nA shadowed variable is a variable declared in an inner scope\nwith the same name and type as a variable in an outer scope,\nand where the outer variable is mentioned after the inner one\nis declared.\n\n(This definition can be refined; the module generates too many\nfalse positives and is not yet enabled by default.)\n\nFor example:\n\n\tfunc BadRead(f *os.File, buf []byte) error {\n\t\tvar err error\n\t\tfor {\n\t\t\tn, err := f.Read(buf) // shadows the function variable 'err'\n\t\t\tif err != nil {\n\t\t\t\tbreak // causes return of wrong value\n\t\t\t}\n\t\t\tfoo(buf)\n\t\t}\n\t\treturn err\n\t}\n",
Default: false,
},
{
Name: "shift",
Doc: "check for shifts that equal or exceed the width of the integer",
Default: true,
},
{
Name: "simplifycompositelit",
Doc: "check for composite literal simplifications\n\nAn array, slice, or map composite literal of the form:\n\t[]T{T{}, T{}}\nwill be simplified to:\n\t[]T{{}, {}}\n\nThis is one of the simplifications that \"gofmt -s\" applies.",
Default: true,
},
{
Name: "simplifyrange",
Doc: "check for range statement simplifications\n\nA range of the form:\n\tfor x, _ = range v {...}\nwill be simplified to:\n\tfor x = range v {...}\n\nA range of the form:\n\tfor _ = range v {...}\nwill be simplified to:\n\tfor range v {...}\n\nThis is one of the simplifications that \"gofmt -s\" applies.",
Default: true,
},
{
Name: "simplifyslice",
Doc: "check for slice simplifications\n\nA slice expression of the form:\n\ts[a:len(s)]\nwill be simplified to:\n\ts[a:]\n\nThis is one of the simplifications that \"gofmt -s\" applies.",
Default: true,
},
{
Name: "sortslice",
Doc: "check the argument type of sort.Slice\n\nsort.Slice requires an argument of a slice type. Check that\nthe interface{} value passed to sort.Slice is actually a slice.",
Default: true,
},
{
Name: "stdmethods",
Doc: "check signature of methods of well-known interfaces\n\nSometimes a type may be intended to satisfy an interface but may fail to\ndo so because of a mistake in its method signature.\nFor example, the result of this WriteTo method should be (int64, error),\nnot error, to satisfy io.WriterTo:\n\n\ttype myWriterTo struct{...}\n func (myWriterTo) WriteTo(w io.Writer) error { ... }\n\nThis check ensures that each method whose name matches one of several\nwell-known interface methods from the standard library has the correct\nsignature for that interface.\n\nChecked method names include:\n\tFormat GobEncode GobDecode MarshalJSON MarshalXML\n\tPeek ReadByte ReadFrom ReadRune Scan Seek\n\tUnmarshalJSON UnreadByte UnreadRune WriteByte\n\tWriteTo\n",
Default: true,
},
{
Name: "stringintconv",
Doc: "check for string(int) conversions\n\nThis checker flags conversions of the form string(x) where x is an integer\n(but not byte or rune) type. Such conversions are discouraged because they\nreturn the UTF-8 representation of the Unicode code point x, and not a decimal\nstring representation of x as one might expect. Furthermore, if x denotes an\ninvalid code point, the conversion cannot be statically rejected.\n\nFor conversions that intend on using the code point, consider replacing them\nwith string(rune(x)). Otherwise, strconv.Itoa and its equivalents return the\nstring representation of the value in the desired base.\n",
Default: true,
},
{
Name: "structtag",
Doc: "check that struct field tags conform to reflect.StructTag.Get\n\nAlso report certain struct tags (json, xml) used with unexported fields.",
Default: true,
},
{
Name: "testinggoroutine",
Doc: "report calls to (*testing.T).Fatal from goroutines started by a test.\n\nFunctions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and\nSkip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.\nThis checker detects calls to these functions that occur within a goroutine\nstarted by the test. For example:\n\nfunc TestFoo(t *testing.T) {\n go func() {\n t.Fatal(\"oops\") // error: (*T).Fatal called from non-test goroutine\n }()\n}\n",
Default: true,
},
{
Name: "tests",
Doc: "check for common mistaken usages of tests and examples\n\nThe tests checker walks Test, Benchmark and Example functions checking\nmalformed names, wrong signatures and examples documenting non-existent\nidentifiers.\n\nPlease see the documentation for package testing in golang.org/pkg/testing\nfor the conventions that are enforced for Tests, Benchmarks, and Examples.",
Default: true,
},
{
Name: "unmarshal",
Doc: "report passing non-pointer or non-interface values to unmarshal\n\nThe unmarshal analysis reports calls to functions such as json.Unmarshal\nin which the argument type is not a pointer or an interface.",
Default: true,
},
{
Name: "unreachable",
Doc: "check for unreachable code\n\nThe unreachable analyzer finds statements that execution can never reach\nbecause they are preceded by an return statement, a call to panic, an\ninfinite loop, or similar constructs.",
Default: true,
},
{
Name: "unsafeptr",
Doc: "check for invalid conversions of uintptr to unsafe.Pointer\n\nThe unsafeptr analyzer reports likely incorrect uses of unsafe.Pointer\nto convert integers to pointers. A conversion from uintptr to\nunsafe.Pointer is invalid if it implies that there is a uintptr-typed\nword in memory that holds a pointer value, because that word will be\ninvisible to stack copying and to the garbage collector.",
Default: true,
},
{
Name: "unusedparams",
Doc: "check for unused parameters of functions\n\nThe unusedparams analyzer checks functions to see if there are\nany parameters that are not being used.\n\nTo reduce false positives it ignores:\n- methods\n- parameters that do not have a name or are underscored\n- functions in test files\n- functions with empty bodies or those with just a return stmt",
Default: false,
},
{
Name: "unusedresult",
Doc: "check for unused results of calls to some functions\n\nSome functions like fmt.Errorf return a result and have no side effects,\nso it is always a mistake to discard the result. This analyzer reports\ncalls to certain functions in which the result of the call is ignored.\n\nThe set of functions may be controlled using flags.",
Default: true,
},
{
Name: "fillreturns",
Doc: "suggested fixes for \"wrong number of return values (want %d, got %d)\"\n\nThis checker provides suggested fixes for type errors of the\ntype \"wrong number of return values (want %d, got %d)\". For example:\n\tfunc m() (int, string, *bool, error) {\n\t\treturn\n\t}\nwill turn into\n\tfunc m() (int, string, *bool, error) {\n\t\treturn 0, \"\", nil, nil\n\t}\n\nThis functionality is similar to https://github.com/sqs/goreturns.\n",
Default: true,
},
{
Name: "nonewvars",
Doc: "suggested fixes for \"no new vars on left side of :=\"\n\nThis checker provides suggested fixes for type errors of the\ntype \"no new vars on left side of :=\". For example:\n\tz := 1\n\tz := 2\nwill turn into\n\tz := 1\n\tz = 2\n",
Default: true,
},
{
Name: "noresultvalues",
Doc: "suggested fixes for \"no result values expected\"\n\nThis checker provides suggested fixes for type errors of the\ntype \"no result values expected\". For example:\n\tfunc z() { return nil }\nwill turn into\n\tfunc z() { return }\n",
Default: true,
},
{
Name: "undeclaredname",
Doc: "suggested fixes for \"undeclared name: <>\"\n\nThis checker provides suggested fixes for type errors of the\ntype \"undeclared name: <>\". It will insert a new statement:\n\"<> := \".",
Default: true,
},
{
Name: "fillstruct",
Doc: "note incomplete struct initializations\n\nThis analyzer provides diagnostics for any struct literals that do not have\nany fields initialized. Because the suggested fix for this analysis is\nexpensive to compute, callers should compute it separately, using the\nSuggestedFix function below.\n",
Default: true,
},
},
}

View File

@ -1121,9 +1121,10 @@ func urlRegexp() *regexp.Regexp {
}
type APIJSON struct {
Options map[string][]*OptionJSON
Commands []*CommandJSON
Lenses []*LensJSON
Options map[string][]*OptionJSON
Commands []*CommandJSON
Lenses []*LensJSON
Analyzers []*AnalyzerJSON
}
type OptionJSON struct {
@ -1150,3 +1151,9 @@ type LensJSON struct {
Title string
Doc string
}
type AnalyzerJSON struct {
Name string
Doc string
Default bool
}