mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:11:48 +00:00
* Rename `directive` package to nolint * Wrap all analyzers with `nolint.Wrap` ## Test plan green ci <!-- All pull requests REQUIRE a test plan: https://docs.sourcegraph.com/dev/background-information/testing_principles -->
13 lines
369 B
Python
13 lines
369 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "exportloopref",
|
|
srcs = ["exportloopref.go"],
|
|
importpath = "github.com/sourcegraph/sourcegraph/dev/linters/exportloopref",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//dev/linters/nolint",
|
|
"@com_github_kyoh86_exportloopref//:go_default_library",
|
|
],
|
|
)
|