summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjtrakk <43392409+jtrakk@users.noreply.github.com>2020-06-09 04:44:09 -0700
committerGitHub <noreply@github.com>2020-06-09 07:44:09 -0400
commita16bfcb3d695d1d1158b20253806945581f80c80 (patch)
tree1956a289b0b7529622c52e038fc3551d84036a19
parent1b2c1dc67583d70d1d16fc93c90db80bead4fb09 (diff)
ignore/types: add dvc
This provides support for DVC files (https://dvc.org/). PR #1608
-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 a0c5bf76..10df2b33 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*"]),
+ ("dvc", &["Dvcfile", "*.dvc"]),
("ebuild", &["*.ebuild"]),
("edn", &["*.edn"]),
("elisp", &["*.el"]),