-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathREPO.bazel
More file actions
26 lines (24 loc) · 822 Bytes
/
Copy pathREPO.bazel
File metadata and controls
26 lines (24 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2026 Stack AV Co.
# SPDX-License-Identifier: Apache-2.0
"https://bazel.build/rules/lib/globals/repo"
# We currently have to use "**" liberally in these ignore patterns to work around:
# https://github.com/bazelbuild/bazel/pull/24203#issuecomment-4142534263
ignore_directories([
# keep-sorted start
# Generic cache folder
"**/.cache/**",
# Git metadata
"**/.git/**",
# Mypy cache folder
"**/.mypy_cache/**",
# Pytest cache folder
"**/.pytest_cache/**",
# Ruff cache folder
"**/.ruff_cache/**",
# Ignore all bazel build directories to prevent them from breaking if
# another repo references this as a local_path_override.
"**/bazel-*/**",
# Third party code (external workspace)
"third_party/build_stack_rules_proto/**",
# keep-sorted end
])