"""Input file to test See https://github.com/bazelbuild/skydoc/issues/186 and https://github.com/bazelbuild/stardoc/issues/132""" def bracket_function(param = ""): """Dummy docstring with . This rule runs checks on . Args: param: an arg with **formatted** docstring, by default. Returns: some brackets Deprecated: deprecated for """ return param # buildifier: disable=unsorted-dict-items bracketuse = provider( doc = "Information with ", fields = { "foo": "A string representing ", "bar": "A string representing bar", "baz": "A string representing baz", }, ) def _rule_impl(ctx): _ignore = [ctx] # @unused return [] my_anglebrac = rule( implementation = _rule_impl, doc = "Rule with ", attrs = { "useless": attr.string( doc = "Args with some tags: , ", default = "Find ", ), }, ) def _bracket_aspect_impl(ctx): _ignore = [ctx] # @unused return [] bracket_aspect = aspect( implementation = _bracket_aspect_impl, doc = "Aspect with ", attr_aspects = ["deps"], attrs = { "brackets": attr.string( doc = "Attribute with ", default = "", ), }, )