Update default_types.rs to support ColdFusion/CFML and BoxLang

Added support for CFML (cfc/cfm) and BoxLang (bx/bxm/bxs)
This commit is contained in:
James Moberg 2025-07-04 17:37:38 -07:00 committed by GitHub
parent 3b7fd442a6
commit d298238bc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[
"WORKSPACE", "WORKSPACE.bazel",
]),
(&["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"], &["*.[Cc][Ff][Cc]", "*.[Cc][Ff][Mm]"]),
(&["clojure"], &["*.clj", "*.cljc", "*.cljs", "*.cljx"]),
(&["cmake"], &["*.cmake", "CMakeLists.txt"]),
(&["cmd"], &["*.bat", "*.cmd"]),