From c3828cb508e5ffd91fbf7eb4ae3f9354855b87a3 Mon Sep 17 00:00:00 2001 From: Dmitry Gerasimov Date: Mon, 25 Nov 2024 21:28:24 +0100 Subject: [PATCH] ignore/types: add `*.dtso` to `devicetree` type `dtso` files became recognized as devicetree a couple of years ago with the following commit: https://github.com/torvalds/linux/commit/363547d2191cbc32ca954ba75d72908712398ff2 Closes #2938 --- crates/ignore/src/default_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index fb24c782..297fc38b 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -62,7 +62,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["cython"], &["*.pyx", "*.pxi", "*.pxd"]), (&["d"], &["*.d"]), (&["dart"], &["*.dart"]), - (&["devicetree"], &["*.dts", "*.dtsi"]), + (&["devicetree"], &["*.dts", "*.dtsi", "*.dtso"]), (&["dhall"], &["*.dhall"]), (&["diff"], &["*.patch", "*.diff"]), (&["dita"], &["*.dita", "*.ditamap", "*.ditaval"]),