blob: 03ffce66f2163c6e19a18df9a58fa580fe25aa73 [file] [log] [blame]
def my_rule_impl(ctx):
return struct()
my_rule = rule(
implementation = my_rule_impl,
doc = "This is my rule. It does stuff.",
attrs = {
"first": attr.label(mandatory = True, doc = "first doc string",
allow_files = True, single_file = True),
"second": attr.string_dict(mandatory = True),
"third": attr.output(mandatory = True),
"fourth": attr.bool(default = False, doc = "fourth doc string", mandatory = False),
"_hidden": attr.string(),
},
)