File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed
Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments