c-parsons

Results 48 comments of c-parsons

How about: ``` load("@bazel_skylib//:bzl_library.bzl", "bzl_library") bzl_library( name = "macro-deps", srcs = [ "@bazel_skylib//rules:common_settings.bzl", ], visibility = ["//visibility:public"], ) bzl_library( name = "macro-code", srcs = [ "macro.bzl", ], deps = ":macro-deps",...

Whoops. I guess you need: ``` load("@bazel_stardoc//stardoc:stardoc.bzl", "stardoc") stardoc( name = "config-bool-docs", out = "config-bool.md", input = "//macro:macro.bzl", symbol_names = ["config_option_bool"], deps = ["//macro:macro-code"], ) ``` (You'll need to export...

Hmm, I don't have a good sense of how many users would care to have this consistently generated (hence meriting a whole section for Generated Targets) versus those who would...

This is probably something we want to address in Stardoc.

Would using the file-level docstring as a preamble be sufficient?

Could you elaborate a little bit on this feature request? We have: Support module docstrings: https://github.com/bazelbuild/stardoc/issues/25 And we now support custom output templates Is this feature request for processing some...

Sure thing. Will follow up by next week.

I think it should be, yes :) Thanks, Yun!

That's fine. Having this issue fixed in 6.0 is not something that matters to my project, for a couple of reasons: - `--incompatible_unambiguous_label_stringification` no longer breaks us in either the...