-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nolintlint does not report unused issue when disabled linter is disabled in configuration #2920
Comments
Had the same when we disabled |
This is very strange behavior, making the linter half useless. I can confirm that when a //nolint comment disables a check for an already disabled linter, it is not reported as unused. As a result, your code can be full of unused nolint directives that are never flagged |
if I add here: on line 22: on line: 47 it seems to be working, but some tests failing |
This will create a regression. The The directives will be replaced by another directive system. #1658 |
Thanks for the update! Do you have any rough timeline on when the new directive system might be introduced? Just trying to get an idea of what to expect. Appreciate your work on this! |
For now, I'm focused on the v2, so after the v2 release. |
Welcome
Description of the problem
I'm not sure if that's actually a bug or this behavior might make sense and be by design, but it's definitely surprising and confusing and I couldn't find a report for it, so I'm reporting it even to save someone's time when they hit the same issue.
So it seems, when
//nolint
comment disables check for a disabled linter, in the example heregomnd
, it is not being reported as unused, even though with the current linter configuration, it is indeed unused (comment is no-op, removing it does not change the output of the linter).I understand, that as long as
gomnd
linter is disabled, you cannot say for sure that this statement is actually unused or not.I got there, as the following commands were returning me different output and it took me a while to figure out why:
Even though in both cases the issue in the code is actually there.
I wonder if this could be something configurable in
nolintlint
to either produce a warning by default in case like this or configurably make it an error.Version of golangci-lint
Configuration file
Go environment
Verbose output of running
Code example or link to a public repository
The text was updated successfully, but these errors were encountered: