blob: d47d02528941dd911f8558f281725170b594e040 [file] [log] [blame]
"""Input file for input template test"""
def template_function(foo):
"""Runs some checks on the given function parameter.
This rule runs checks on a given function parameter in chosen template.
Use `bazel build` to run the check.
Args:
foo: A unique name for this function.
"""
_ignore = [foo] # @unused
pass
# buildifier: disable=unsorted-dict-items
example = provider(
doc = "Stores information about an example in chosen template.",
fields = {
"foo": "A string representing foo",
"bar": "A string representing bar",
"baz": "A string representing baz",
},
)
def _rule_impl(ctx):
_ignore = [ctx] # @unused
return []
my_example = rule(
implementation = _rule_impl,
doc = "Small example of rule using chosen template.",
attrs = {
"useless": attr.string(
doc = "This argument will be ignored.",
default = "word",
),
},
)
def my_aspect_impl(ctx):
_ignore = [ctx] # @unused
return []
my_aspect = aspect(
implementation = my_aspect_impl,
doc = "This is my aspect. It does stuff.",
attr_aspects = ["deps", "attr_aspect"],
attrs = {
"first": attr.label(mandatory = True, allow_single_file = True),
},
)