with webstorm you can manually click on files/directories to exclude them, one-by-one. but where are these settings saved?
is there a way to add a pattern, eg exclude packages/*/.build/*
?
with webstorm you can manually click on files/directories to exclude them, one-by-one. but where are these settings saved?
is there a way to add a pattern, eg exclude packages/*/.build/*
?
Excluded folders are written to .idea/<project_name>.iml
file in the following format:
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/path1" />
<excludeFolder url="file://$MODULE_DIR$/path2" />
...
</content>
Patterns/wildcards are not supported