Skip to content

Commit

Permalink
Add .ignore file for search tools
Browse files Browse the repository at this point in the history
Tools like `rg` [1] and `ag` [2] support a `.ignore` file which defines
files that are ignored during a recursive search. This adds the file
which makes recursive file searches in the code base ignore files that
are generally not desirable to search in like bindata, vendored files
and compiled frontend assets.

[1] https://github.com/BurntSushi/ripgrep/
[2] https://github.com/ggreer/the_silver_searcher
  • Loading branch information
silverwind committed Dec 18, 2019
1 parent 21f84a6 commit ea08d9e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
vendor
public/js
public/css
public/vendor
modules/options/bindata.go
modules/public/bindata.go
modules/templates/bindata.go

0 comments on commit ea08d9e

Please sign in to comment.