about summary refs log tree commit diff stats
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/config.h b/config.h
index 009908c..3a37f96 100644
--- a/config.h
+++ b/config.h
@@ -1,11 +1,10 @@
-char *ignored_dirs[] = { "node_modules", ".mypy_cache", ".git",
-						 ".hg",			 "__pycache__", ".eggs" };
+char *ignored_dirs[] = {"*node_modules*", "*.mypy_cache*", "*.git*", "*.hg*",
+	"*__pycache__*", "*.eggs*"};
 
 size_t ignored_dirs_size = sizeof(ignored_dirs) / sizeof(ignored_dirs[0]);
 
-char *ignored_extensions[] = { ".pyc", ".jpg", ".jpeg", ".png", ".gif",
-							   ".zip", ".tar", ".xz",	".gz",	".gzip",
-							   ".jar", ".apk", ".deb",	".o" };
+char *ignored_extensions[] = {".pyc", ".jpg", ".jpeg", ".png", ".gif", ".zip",
+	".tar", ".xz", ".gz", ".gzip", ".jar", ".apk", ".deb", ".o"};
 
 size_t ignored_extensions_size =
 	sizeof(ignored_extensions) / sizeof(ignored_extensions[0]);