Ever I start VS Code it modify the file .project and add block:
<filteredResources>
<filter>
<id>1741960946643</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
It also modify the Eclipse settings in the .settings directory. For example it set project specific compiler setting. But I want use the globale settings from the Eclipse IDE.
My Gradle build script contains the eclipse plugin via apply plugin: 'eclipse'
. It there an option to disable the plugin inside VS Code inside the script or in VS Code? How can I detect that inside of VS Code?