From 6887122e5bcef8d4b7a2c70ea04ef9d87d80faff Mon Sep 17 00:00:00 2001 From: James Moberg Date: Fri, 4 Jul 2025 17:37:38 -0700 Subject: [PATCH] ignore/types: add ColdFusion and BoxLang Closes #3090 --- crates/ignore/src/default_types.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs index b4de4b9c..98590494 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -30,6 +30,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ "WORKSPACE", "WORKSPACE.bazel", "WORKSPACE.bzlmod", ]), (&["bitbake"], &["*.bb", "*.bbappend", "*.bbclass", "*.conf", "*.inc"]), + (&["boxlang"], &["*.bx", "*.bxm", "*.bxs"]), (&["brotli"], &["*.br"]), (&["buildstream"], &["*.bst"]), (&["bzip2"], &["*.bz2", "*.tbz2"]), @@ -39,6 +40,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["carp"], &["*.carp"]), (&["cbor"], &["*.cbor"]), (&["ceylon"], &["*.ceylon"]), + (&["cfml"], &["*.cfc", "*.cfm"]), (&["clojure"], &["*.clj", "*.cljc", "*.cljs", "*.cljx"]), (&["cmake"], &["*.cmake", "CMakeLists.txt"]), (&["cmd"], &["*.bat", "*.cmd"]),