14 lines
241 B
Lua
14 lines
241 B
Lua
return {
|
|
cmd = { "gopls" },
|
|
filetypes = { "go" },
|
|
root_markers = { "go.mod", ".git" },
|
|
settings = {
|
|
gopls = {
|
|
analyses = {
|
|
unusedparams = true,
|
|
},
|
|
staticcheck = true,
|
|
gofumpt = true,
|
|
},
|
|
},
|
|
}
|