From 6244e635a1a5aa4d401826b1e970d59a3f6cbf7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sun, 1 Dec 2024 10:28:01 +0100 Subject: [PATCH] ignore/types: add Kconfig Kconfig files are used to represent the configuration database of Kbuild build system. Kbuild is developed as part of the Linux kernel. There are numerous other users including OpenWrt and U-Boot. Ref: https://docs.kernel.org/kbuild/index.html Closes #2942 --- 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 297fc38b..134a1fbd 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -117,6 +117,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["julia"], &["*.jl"]), (&["jupyter"], &["*.ipynb", "*.jpynb"]), (&["k"], &["*.k"]), + (&["kconfig"], &["Kconfig", "Kconfig.*"]), (&["kotlin"], &["*.kt", "*.kts"]), (&["lean"], &["*.lean"]), (&["less"], &["*.less"]),