summaryrefslogtreecommitdiffstats
path: root/crates/ignore
diff options
context:
space:
mode:
authorYifei Teng <tengyifei@users.noreply.github.com>2023-06-07 13:40:01 -0700
committerAndrew Gallant <jamslam@gmail.com>2023-07-08 18:52:42 -0400
commit545a7dc7598a20e8ef82076177164b7e3ccb15e4 (patch)
tree27ac667da2c935f6e3fa3adcd336d79c8c4c63cb /crates/ignore
parent16f783832e3860ffb5f96f03348dc2e31fb0204a (diff)
ignore/types: add cml to the default types list
It's used in Fuchsia to mean "component manifest language."[1] [1]: https://fuchsia.dev/reference/cml?hl=en Closes #2529
Diffstat (limited to 'crates/ignore')
-rw-r--r--crates/ignore/src/default_types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ignore/src/default_types.rs b/crates/ignore/src/default_types.rs
index e5883124..0fedf136 100644
--- a/crates/ignore/src/default_types.rs
+++ b/crates/ignore/src/default_types.rs
@@ -38,6 +38,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
("ceylon", &["*.ceylon"]),
("clojure", &["*.clj", "*.cljc", "*.cljs", "*.cljx"]),
("cmake", &["*.cmake", "CMakeLists.txt"]),
+ ("cml", &["*.cml"]),
("coffeescript", &["*.coffee"]),
("config", &["*.cfg", "*.conf", "*.config", "*.ini"]),
("coq", &["*.v"]),