From a16bfcb3d695d1d1158b20253806945581f80c80 Mon Sep 17 00:00:00 2001 From: jtrakk <43392409+jtrakk@users.noreply.github.com> Date: Tue, 9 Jun 2020 04:44:09 -0700 Subject: [PATCH] ignore/types: add dvc This provides support for DVC files (https://dvc.org/). PR #1608 --- crates/ignore/src/default_types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index a0c5bf7..10df2b3 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"]),