Skip to content

Commit 1ca54b6

Browse files
authored
Added more folders to exclude
1 parent 0e3b812 commit 1ca54b6

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

src/lib/settings.js

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,43 @@ class Settings {
4040
};
4141
#excludeFolders = [
4242
"**/node_modules/**",
43+
"**/bower_components/**",
44+
"**/jspm_packages/**",
45+
"**/.npm/**",
46+
"**/flow-typed/**",
4347
"**/vendor/**",
48+
"**/composer/**",
4449
"**/venv/**",
50+
"**/.virtualenv/**",
51+
"**/__pycache__/**",
52+
"**/.pytest_cache/**",
53+
"**/.eggs/**",
54+
"**/*.egg-info/**",
4555
"**/.git/**",
46-
"**/.vscode/**",
56+
"**/.svn/**",
57+
"**/.hg/**",
58+
"**/.vscode/**",
4759
"**/.idea/**",
48-
"**/bower_components/**",
60+
"**/.vs/**",
61+
"**/.project/**",
62+
"**/.settings/**",
63+
"**/.classpath/**",
4964
"**/dist/**",
5065
"**/build/**",
66+
"**/out/**",
67+
"**/target/**",
68+
"**/bin/**",
69+
"**/obj/**",
5170
"**/coverage/**",
71+
"**/.nyc_output/**",
72+
"**/htmlcov/**",
5273
"**/temp/**",
5374
"**/tmp/**",
75+
"**/.cache/**",
5476
"**/logs/**",
55-
"**/flow-typed/**",
77+
"**/.sass-cache/**",
78+
"**/.DS_Store/**",
79+
"**/Thumbs.db/**"
5680
];
5781
#IS_TABLET = innerWidth > 768;
5882

0 commit comments

Comments
 (0)