]> source.dussan.org Git - gitea.git/commitdiff
Add .ignore file for search tools (#9417)
authorsilverwind <me@silverwind.io>
Wed, 18 Dec 2019 23:34:23 +0000 (00:34 +0100)
committerAntoine GIRARD <sapk@users.noreply.github.com>
Wed, 18 Dec 2019 23:34:23 +0000 (00:34 +0100)
* Add .ignore file for search tools

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

* add leading slash

* remove files already in .gitignore

.ignore [new file with mode: 0644]

diff --git a/.ignore b/.ignore
new file mode 100644 (file)
index 0000000..56ad996
--- /dev/null
+++ b/.ignore
@@ -0,0 +1,5 @@
+/vendor
+/public/vendor
+/modules/options/bindata.go
+/modules/public/bindata.go
+/modules/templates/bindata.go