-
Notifications
You must be signed in to change notification settings - Fork 5
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
How to prevent the extension from checking files in bin
folder?
#25
Comments
Hello @felipecrs, As you can see my holiday break was very long 😎 but I'm back now. This is a good ask and a problem I have also faced. I'm not sure yet if the fix is needed in the client or the server. Will take a look soon. Thanks |
Man, it's me who says thanks for the awesome initiative! |
Still working on this =/ |
Probably going to have to fix it server side and not client side. |
I'm facing this same issue with the bin folder being searched. Makes it unusable, unfortunately. |
I also hit this - it seems to be the extension "Language Support for Java(TM) by RedHat" ( Until that is fixed, to avoid Groovy-Guru from flagging everything as a duplicate I added {
"files.exclude": {
"bin/**": true
}
} |
I am having similar issue with duplicates in .svn folder (yes, our company still uses it). I have .svn folder excluded globally and also locally via solution suggested by @sparrowt, but I am still getting this 'Invalid duplicate class definition' warnings. Any more suggestions how to get around that? I am wondering why would the extension ignore global vscode setting for exclude locations in the first place (.git, .svn, etc folders). |
I use Gradle in my project, and because of that, gradle generates some build output in a folder called
bin
. The extension wrongly sees my source files as being defined there as well:The text was updated successfully, but these errors were encountered: