You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I often get warnings in my golang projects that my import blocks are duplicates and should be refactored. Unfortunately, that's not how golang works - everything a file references must be imported, there are no transitive imports.
Will often occur in many files and the only way to get rid of duplication would be to put everything in one file which is a horrible way to improve maintainability
The text was updated successfully, but these errors were encountered:
I often get warnings in my golang projects that my import blocks are duplicates and should be refactored. Unfortunately, that's not how golang works - everything a file references must be imported, there are no transitive imports.
A codeblock like:
Will often occur in many files and the only way to get rid of duplication would be to put everything in one file which is a horrible way to improve maintainability
The text was updated successfully, but these errors were encountered: