From eac41eefb5c19d9a2d2bcdd60d6989660288333d Mon Sep 17 00:00:00 2001 From: Chris Sauer Date: Tue, 19 Dec 2023 14:59:18 -0800 Subject: [PATCH] Reformat @hedron_compile_commands//:bzl_srcs_for_stardoc #142 --- BUILD | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/BUILD b/BUILD index befda12..2578c6e 100644 --- a/BUILD +++ b/BUILD @@ -11,7 +11,13 @@ refresh_compile_commands( # Stardoc users only: Depend on "@hedron_compile_commands//:bzl_srcs_for_stardoc" as needed. # Why? Stardoc requires all loaded files to be listed as deps; without this we'd prevent users from running Stardoc on their code when they load from this tool in, e.g., their own workspace.bzl or wrapping macros. -filegroup(name = "bzl_srcs_for_stardoc", srcs = glob(["**/*.bzl"]) + ["@bazel_tools//:bzl_srcs"], visibility = ["//visibility:public"]) +filegroup( + name = "bzl_srcs_for_stardoc", + visibility = ["//visibility:public"], + srcs = glob(["**/*.bzl"]) + [ + "@bazel_tools//:bzl_srcs" + ], +)