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.
This commit is contained in:
parent
ebc629a4f4
commit
436b72034f
1 changed files with 7 additions and 0 deletions
7
agignore
Normal file
7
agignore
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.git
|
||||||
|
coverage*
|
||||||
|
.dockerignore
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
node_modules/
|
||||||
|
dist
|
Loading…
Reference in a new issue