-
-
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
issues.exclude-dirs not behaving as expected #5438
Comments
Hey, thank you for opening your first Issue ! 🙂 If you would like to contribute we have a guide for contributors. |
You've checked the "Yes, I've read the The key point is that
Are these directories also not supposed to be able to compile with Go? If not, you will have to invoke If the code is supposed to be valid and compile successfully, can you confirm that |
Hello @bombsimon , Thanks for reverting back! For us we typically have directories cmd, internal, pkg and possibly others and when building we specify go build towards the cmd/ where the main is (nothing else), but for golangci-lint we would then need to specify each directory eligible for linting for the repository and that I guess is the difference and makes it a bit more cumbersome compared to go build. The code under build/ is not necessarily meant to compile since it is used by various parallel analysis CI/CD jobs (license compliance etc.) Best Regards, |
Gotcha! To clarify the reason why this is happening is that the Running Best I can think of from the top of my head would be something like golangci-lint run $(find . -maxdepth 1 -type d ! -name "*some-exclude-pattern*" ! -name '.*' -exec echo "{}/..." \;) Or maybe easier to write include patterns? golangci-lint run $(find . -maxdepth 1 -type d -name "*some-include-pattern*" -exec echo "{}/..." \;) PS. This is a very common question and I mentioned it just last month in #5297 (comment) around exclusions for the upcoming v2. However we didn't really end up with any changes on the topic. |
You can also use build tags to skip the "non-compilable" files. |
Welcome
typecheck
section of the FAQ.How did you install golangci-lint?
Official binary
Description of the problem
The issues.exclude-dirs configuration is ignored in case lint failure is due to typecheck linter.
This is a bit unintuitive that even explicitly excluded directories are failing a specific linter, and after some digging in the golangci-lint code it seems it is related to this PR.
This is a bit problematic when there is CI/CD tasks populate code that does not pass this linter, in build/CI/CD related directories not intended to be linted. Only workaround I have right now is to explicitly point out the directories that should be linted, which is a bit tedious.
Is this considered a bug or is it possible to have another config-option to instruct golangci-lint to not use typecheck linter even in certain directories?
Version of golangci-lint
Configuration
Go environment
Verbose output of running
A minimal reproducible example or link to a public repository
Validation
Supporter
The text was updated successfully, but these errors were encountered: