| # 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("@io_bazel_rules_go//go:def.bzl", "go_binary") | |
| go_binary( | |
| name = "mdlint", | |
| srcs = ["main.go"], | |
| deps = [ | |
| "//tools/mdlint/core", | |
| "//tools/mdlint/rules", | |
| ], | |
| ) |