summaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorArmin Brauns <armin.brauns@embedded-solutions.at>2022-11-14 13:42:57 +0100
committerGitHub <noreply@github.com>2022-11-14 07:42:57 -0500
commit25a4eaf5aef2aa0a06dc53d6eef2dce1e0333ea2 (patch)
tree29ccd3d2e04aeae86de2e601498ff9d938301035 /crates
parent000015791742bb1280f1853adb714fdee1ba9f8e (diff)
ignore/types: add devicetree filetype
See: https://www.devicetree.org/ PR #2349
Diffstat (limited to 'crates')
-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 3b43cba0..ffd721dd 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -56,6 +56,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("cython", &["*.pyx", "*.pxi", "*.pxd"]),
("d", &["*.d"]),
("dart", &["*.dart"]),
+ ("devicetree", &["*.dts", "*.dtsi"]),
("dhall", &["*.dhall"]),
("diff", &["*.patch", "*.diff"]),
("docker", &["*Dockerfile*"]),