From 9c8d873a75ccb2a8d3ed692148becb2e72514732 Mon Sep 17 00:00:00 2001 From: Sergei Vorobev Date: Sat, 30 Jan 2021 15:22:48 -0800 Subject: [PATCH] ignore/types: improve bazel globs Adds *.BUILD and *.bazelrc. PR #1789 --- 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 54fe5cb7..c6972f9c 100644 --- a/crates/ignore/src/default_types.rs +++ b/crates/ignore/src/default_types.rs @@ -21,7 +21,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[ ("ats", &["*.ats", "*.dats", "*.sats", "*.hats"]), ("avro", &["*.avdl", "*.avpr", "*.avsc"]), ("awk", &["*.awk"]), - ("bazel", &["*.bazel", "*.bzl", "BUILD", "WORKSPACE"]), + ("bazel", &["*.bazel", "*.bzl", "*.BUILD", "*.bazelrc", "BUILD", "WORKSPACE"]), ("bitbake", &["*.bb", "*.bbappend", "*.bbclass", "*.conf", "*.inc"]), ("brotli", &["*.br"]), ("buildstream", &["*.bst"]),