-
| I was just wanted to open a bug report, when I noticed this PR #1946 So if I understand it correctly. Linters  And why actually the staticcheck config file  | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
| 
 staticcheck is a binary and a set of rules, those rules are grouped in "category":  
 megacheck was the first name of staticcheck, the "categories" were binaries, and as you can understand there are historical reasons behind those "linters" inside golangci-lint. More information about the 4 linters: #357 
 The file is partially ignored: you can use  It is mainly related to the API of staticcheck: we don't have access to the element to handle the staticcheck configuration. About the configuration, you can follow #1275 | 
Beta Was this translation helpful? Give feedback.
staticcheck is a binary and a set of rules, those rules are grouped in "category":
staticcheck,gosimple,stylecheckandunused.megacheck was the first name of staticcheck, the "catego…