blob: 11bf4be19740aecf21e43f88594f3673f1ff844e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
return {
settings = {
gopls = {
staticcheck = true,
vulncheck = "Imports",
hints = {
rangeVariableTypes = true,
parameterNames = true,
constantValues = true,
assignVariableTypes = true,
compositeLiteralFields = true,
compositeLiteralTypes = true,
functionTypeParameters = true,
},
},
}
}
|