This change removes the disabledAnalyses setting and replaces it with a more general feature named "analyses". This will allow users to opt in as well as opt out of analyzers that they do not find useful. This also updates some documentation to show users what analyzers gopls is using and which are enabled by default. Change-Id: Id3239b4c4c9667e834f262c889270d14fdba0f93 Reviewed-on: https://go-review.googlesource.com/c/tools/+/223662 Run-TryBot: Rohan Challa <rohan@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
3.8 KiB
Settings
This document describes the global settings for gopls
inside the editor. The settings block will be called "gopls"
and contains a collection of controls for gopls
that the editor is not expected to understand or control. These settings can also be configured differently per workspace folder.
In VSCode, this would be a section in your settings.json
file that might look like this:
"gopls": {
"usePlaceholders": true,
"completeUnimported": true
},
Officially supported
Below is the list of settings that are officially supported for gopls
.
buildFlags array of strings
This is the set of flags passed on to the build system when invoked. It is applied to queries like go list
, which is used when discovering files. The most common use is to set -tags
.
env map of string to value
This can be used to add environment variables. These will not affect gopls
itself, but will be used for any external commands it invokes.
hoverKind string
This controls the information that appears in the hover text. It must be one of:
"NoDocumentation"
"SynopsisDocumentation"
"FullDocumentation"
Authors of editor clients may wish to handle hover text differently, and so might use different settings. The options below are not intended for use by anyone other than the authors of editor plugins.
"SingleLine"
"Structured"
Default: "SynopsisDocumentation"
.
usePlaceholders boolean
If true, then completion responses may contain placeholders for function parameters or struct fields.
Default: false
.
linkTarget string
This controls where points documentation for given package in textDocument/documentLink
.
It might be one of:
"godoc.org"
"pkg.go.dev"
If company chooses to use its owngodoc.org
, its address can be used as well.
Default: "pkg.go.dev"
.
local string
This is the equivalent of the goimports -local
flag, which puts imports beginning with this string after 3rd-party packages.
It should be the prefix of the import path whose imports should be grouped separately.
Default: ""
.
Experimental
The below settings are considered experimental. They may be deprecated or changed in the future. They are typically used to test experimental opt-in features or to disable features.
analyses map[string]bool
Analyses specify analyses that the user would like to enable or disable. A map of the names of analysis passes that should be enabled/disabled. A full list of analyzers that gopls uses can be found here
Example Usage:
...
"analyses": {
"unreachable": false, // Disable the unreachable analyzer.
"unusedparams": true // Enable the unusedparams analyzer.
}
...
staticcheck boolean
If true, it enables the use of the staticcheck.io analyzers.
completionDocumentation boolean
If false, indicates that the user does not want documentation with completion results.
Default value: true
.
completeUnimported boolean
If true, the completion engine is allowed to make suggestions for packages that you do not currently import.
Default: false
.
deepCompletion boolean
If true, this turns on the ability to return completions from deep inside relevant entities, rather than just the locally accessible ones.
Default: true
.
Consider this example:
package main
import "fmt"
type wrapString struct {
str string
}
func main() {
x := wrapString{"hello world"}
fmt.Printf(<>)
}
At the location of the <>
in this program, deep completion would suggest the result x.str
.
fuzzyMatching boolean
If true, this enables server side fuzzy matching of completion candidates.
Default: true
.