From fadfb7bee88779e5872193254033d1cdf727882a 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 --- 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 2cf8ad807..ce0ce5a84 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"]),