I'm using VSCode for my Golang projects with the default lint settings, and I can't find a way to have a strict lint of my Go files, underlining the problems in the code, that would allow me to abide strictly to official Go guidelines, such as:
- Starting comments of functions with the function name,
- Using only camel case in variables,
- Using only snake case in package name,
- etc...
How to get strict linting behaviour in VSCode?