Default severity: warning
Detect declarations shadowing imports.
Bad
json := loadConfig() // shadows the json importGood
encoded := json.Marshal(value)Detect declarations shadowing imports.
Default severity: warning
Detect declarations shadowing imports.
json := loadConfig() // shadows the json importencoded := json.Marshal(value)