You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've set java.configuration.updateBuildConfiguration to disabled both on Workspace and user settings level and yet as soon as I start VSCode my .project files get modified and this snippet is being added
Background: We as a company commit .project / .classpath to Git and the majority still uses Eclipse. Quite annoying to have 30+ modified files every time I try to use VSCode on a project
The text was updated successfully, but these errors were encountered:
java.configuration.updateBuildConfiguration controls whether (or how) the project classpath is updated when build files are modified, so it would control this behaviour.
Based on a quick look at the codebase, you should be able to bypass this by setting "java.project.resourceFilters": []. By default it is [ "node_modules", "\\.git" ] so that those locations are not refreshed by the language server. Let me know if this fixes it.
Closing for now. Might be good to investigate whether we can somehow enable our filters without overwriting the existing ones a project may already have.
I've set
java.configuration.updateBuildConfiguration
todisabled
both on Workspace and user settings level and yet as soon as I start VSCode my .project files get modified and this snippet is being addedCan this be avoided?
Background: We as a company commit .project / .classpath to Git and the majority still uses Eclipse. Quite annoying to have 30+ modified files every time I try to use VSCode on a project
The text was updated successfully, but these errors were encountered: