From 25a4eaf5aef2aa0a06dc53d6eef2dce1e0333ea2 Mon Sep 17 00:00:00 2001 From: Armin Brauns Date: Mon, 14 Nov 2022 13:42:57 +0100 Subject: [PATCH] ignore/types: add devicetree filetype See: https://www.devicetree.org/ PR #2349 --- 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 3b43cba..ffd721d 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*"]),