-
Seriously, I keep seeing checks = ["all", "-ST1003"]
initialisms = [] What could possibly be mistaken or missing in there? (Might add, it's Tried gopls restarts & editor restarts already of course. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The You can configure the set of analyzes that
|
Beta Was this translation helpful? Give feedback.
The
checks
option is processed by the analysis runner, i.e. thestaticcheck
executable. Gopls doesn't use that executable, however. Instead, it runs the individual analyzers directly, which don't themselves care about thechecks
setting.You can configure the set of analyzes that
gopls
runs via its ownanalyses
setting, for example: