From 6a3b4d09771cfc3616eb6b33ba1f6a0d4f64babe Mon Sep 17 00:00:00 2001 From: Lutz Reinhardt Date: Mon, 23 Mar 2026 11:21:42 +0000 Subject: [PATCH] Load user settings in bazel `user.bazelrc` is already part of `.gitignore` but not used yet by bazel. Thus it is added as an optional bazel import. --- .bazelrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bazelrc b/.bazelrc index 03449af..cf9c2ab 100644 --- a/.bazelrc +++ b/.bazelrc @@ -20,3 +20,7 @@ test --test_output=errors common --registry=https://raw.githubusercontent.com/eclipse-score/bazel_registry/main/ common --registry=https://bcr.bazel.build + +# Import custom user settings +# Can be used to enable e.g. sanitizers or other features without modifying the main .bazelrc +try-import %workspace%/user.bazelrc