summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2023-11-29 18:03:12 -0600
committerGitHub <noreply@github.com>2023-11-29 19:03:12 -0500
commit2a4dba3fbfef944c562bcdfa7485fa0f70d4f86f (patch)
tree4065cb8d5201731e090a8f5717b3d640b1ca4b9e
parent84d65865e6febc784b8b0296dd4681d761fa5a67 (diff)
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
-rw-r--r--crates/ignore/src/default_types.rs2
1 files changed, 1 insertions, 1 deletions
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"]),