From ed66fa0f7306272a223fbe731f0b8de5a0aaf4a6 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 31 Jan 2024 13:11:13 -0800 Subject: [PATCH] Detect WORKSPACE.bzlmod for bazel file type This file came alongside MODULE.bazel and I should have added it here previously --- 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 329d54181..d5cd34ab2 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -27,7 +27,7 @@ pub(crate) const DEFAULT_TYPES: &[(&[&str], &[&str])] = &[ (&["bat", "batch"], &["*.bat"]), (&["bazel"], &[ "*.bazel", "*.bzl", "*.BUILD", "*.bazelrc", "BUILD", "MODULE.bazel", - "WORKSPACE", "WORKSPACE.bazel", + "WORKSPACE", "WORKSPACE.bazel", "WORKSPACE.bzlmod", ]), (&["bitbake"], &["*.bb", "*.bbappend", "*.bbclass", "*.conf", "*.inc"]), (&["brotli"], &["*.br"]),