blob: 59271dd69ec6fd44a4a77352986067b57a710022 [file]
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load("@platforms//host:constraints.bzl", "HOST_CONSTRAINTS")
load("//build/bazel/rules/host:defs.bzl", "go_binary_host_tool")
go_binary_host_tool(
name = "mdlint",
srcs = ["main.go"],
target_compatible_with = HOST_CONSTRAINTS,
deps = [
"//tools/mdlint/core",
"//tools/mdlint/rules",
],
)