switch out golangci-lint with more basic linting#66
Conversation
|
Also forgot to mention I attempted to ignore the error in #65 but I can't get the ignore syntax correct? This is just more messing with linting than I want to do! 😅 |
deivid-rodriguez
left a comment
There was a problem hiding this comment.
I know nothing about go, but linting should be helpful but not get in the middle.
|
Weird, I've generally been pretty happy with There's actually a lot that I found it added beyond |
I am frustrated with
golangci-lintwhich runs a number of linters on the code, so I'm switching it out for more basic and standard linting. Here is my list of grievances:When running locally it seems to run on the standard library? and fails?!
It's also giving false positives about something that compiles ok:
Additionally in #65 it suggests something that doesn't compile, possibly because generics are not supported by gocritic?
So I'm trying to use the builtin tool
go vetand use the standardgofmtto ensure that basic things are correct, but avoid the false positives and some of the nit-picky linting thatgolangci-lintruns. I think at this point it's just more trouble than it's worth.