fork of https://github.com/sourcegraph/zoekt
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "ignore",
5 srcs = ["ignore.go"],
6 importpath = "github.com/sourcegraph/zoekt/ignore",
7 visibility = ["//visibility:public"],
8 deps = ["@com_github_gobwas_glob//:glob"],
9)
10
11go_test(
12 name = "ignore_test",
13 srcs = ["ignore_test.go"],
14 embed = [":ignore"],
15 deps = ["@com_github_gobwas_glob//:glob"],
16)