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.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/config.h b/config.h
index c82ed76..f652324 100644
--- a/config.h
+++ b/config.h
@@ -1,11 +1,13 @@
-char *ignored_dirs[] = {"node_modules", ".mypy_cache", ".git", ".hg",
-                        "__pycache__"};
+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"};
+char *ignored_extensions[] = { ".pyc", ".jpg", ".jpeg", ".png", ".gif",
+			       ".zip", ".tar", ".xz",	".gz",	".gzip",
+			       ".jar", ".apk", ".deb" };
 
 size_t ignored_extensions_size =
-    sizeof(ignored_extensions) / sizeof(ignored_extensions[0]);
+	sizeof(ignored_extensions) / sizeof(ignored_extensions[0]);
+
+int get_value(void *m, const char *section, const char *key, const char *value);