From 2a4dba3fbfef944c562bcdfa7485fa0f70d4f86f Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Wed, 29 Nov 2023 18:03:12 -0600 Subject: ignore/types: add meson.options Starting with meson 1.1, there is a preference for using meson.options instead of meson_options.txt. Add the new filename to the meson set. PR #2666 --- 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 af71fe8e..04d2d969 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -172,7 +172,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ "*.mdx", ]), (&["matlab"], &["*.m"]), - (&["meson"], &["meson.build", "meson_options.txt"]), + (&["meson"], &["meson.build", "meson_options.txt", "meson.options"]), (&["minified"], &["*.min.html", "*.min.css", "*.min.js"]), (&["mint"], &["*.mint"]), (&["mk"], &["mkfile"]), -- cgit v1.2.3