remove node_modules from eclipse

Adds a resource filter for node_modules.
This commit is contained in:
2021-03-06 09:37:52 +01:00
parent b8e73b9b7b
commit f9fc4d2f74

View File

@@ -117,6 +117,17 @@ subprojects {
} }
} }
} }
project {
//if you don't want any node_modules folder to appear in Eclipse, you can filter it out:
resourceFilter {
appliesTo = 'FOLDERS'
type = 'EXCLUDE_ALL'
matcher {
id = 'org.eclipse.ui.ide.multiFilter'
arguments = '1.0-name-matches-false-false-node_modules'
}
}
}
} }
} }