From 436b72034f8eb3975db34eee78676dd27f2c8f2b Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Tue, 13 Oct 2015 11:31:47 -0400 Subject: [PATCH] Add global ignore for ag Even though ag can use .gitignore, there are some holes, for one the .git directory itself. Also, the pattern matching between each seems slightly off so in some projects, what git ignores, ag still finds. This is a superset to act as a backstop so I don't have to invade each project's .gitignore with entries just for ag. --- agignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 agignore diff --git a/agignore b/agignore new file mode 100644 index 0000000..1bbe9be --- /dev/null +++ b/agignore @@ -0,0 +1,7 @@ +.git +coverage* +.dockerignore +.DS_Store +.idea +node_modules/ +dist