Browse Source

.cleanignore: prevent matching in sibling installs and node_modules

telamonian 5 years ago
parent
commit
7361f40d02
1 changed files with 10 additions and 1 deletions
  1. 10 1
      .cleanignore

+ 10 - 1
.cleanignore

@@ -1,7 +1,16 @@
 # jetbrains IDE stuff
 *.iml
-!**/node_modules/**/*.iml
 .idea/
 
+# avoid matching to sibling installs or node_modules
+!packages/**/*.iml
+!packages/**/.idea/
+!**/node_modules/**/*.iml
+!**/node_modules/**/.idea/
+
 # ms IDE stuff
 .vscode
+
+# avoid matching to sibling installs or node_modules
+!packages/**/.vscode
+!**/node_modules/**/.vscode