summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZoltan Puskas <zoltan@sinustrom.info>2020-03-28 19:05:33 -0700
committerAndrew Gallant <jamslam@gmail.com>2020-03-29 18:44:04 -0400
commit4dfea016b915bb1e88679361de83a91e60447835 (patch)
treef36b5f857143481b9981c784c42ce745c0bf9c52
parent3193d57ac19d7c1115c87e103136c4e3a68fb3cc (diff)
ignore/types: add ebuild type
Add support for Gentoo's portage package manager spec files: https://wiki.gentoo.org/wiki/Portage
-rw-r--r--crates/ignore/src/default_types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs
index 21b1c085..9136647a 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -52,6 +52,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("dhall", &["*.dhall"]),
("diff", &["*.patch", "*.diff"]),
("docker", &["*Dockerfile*"]),
+ ("ebuild", &["*.ebuild"]),
("edn", &["*.edn"]),
("elisp", &["*.el"]),
("elixir", &["*.ex", "*.eex", "*.exs"]),