mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +00:00
bazel: add flag to disable nogo (#52377)
This commit is contained in:
parent
030ea2cbb2
commit
c12e7351d1
32
BUILD.bazel
generated
32
BUILD.bazel
generated
@ -1,3 +1,4 @@
|
||||
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "nogo")
|
||||
load("@aspect_bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin")
|
||||
load("@aspect_rules_ts//ts:defs.bzl", "ts_config")
|
||||
@ -276,20 +277,33 @@ js_library(
|
||||
# For nogo to be able to run a linter, it needs to have `var Analyzer analysis.Analyzer` defined in the main package.
|
||||
# some of the linters do not have that, so we need to define that ourselves. The linters where we have defined can
|
||||
# be found at dev/linters. Finally, the nogo configuration can be found at the root of the repository in `nogo_config.json`
|
||||
bool_flag(
|
||||
name = "disable_nogo",
|
||||
build_setting_default = False,
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "nogo_disabled",
|
||||
flag_values = {":disable_nogo": "true"},
|
||||
)
|
||||
|
||||
nogo(
|
||||
name = "sg_nogo",
|
||||
config = ":nogo_config.json",
|
||||
vet = True,
|
||||
visibility = ["//visibility:public"], # must have public visibility
|
||||
deps = [
|
||||
"//dev/linters/bodyclose",
|
||||
"//dev/linters/depguard",
|
||||
"//dev/linters/exportloopref",
|
||||
"//dev/linters/forbidigo",
|
||||
"//dev/linters/gocritic",
|
||||
"//dev/linters/ineffassign",
|
||||
"//dev/linters/unparam",
|
||||
] + STATIC_CHECK_ANALYZERS,
|
||||
deps = select({
|
||||
"//:nogo_disabled": [],
|
||||
"//conditions:default": [
|
||||
"//dev/linters/bodyclose",
|
||||
"//dev/linters/depguard",
|
||||
"//dev/linters/exportloopref",
|
||||
"//dev/linters/forbidigo",
|
||||
"//dev/linters/gocritic",
|
||||
"//dev/linters/ineffassign",
|
||||
"//dev/linters/unparam",
|
||||
] + STATIC_CHECK_ANALYZERS,
|
||||
}),
|
||||
)
|
||||
|
||||
exports_files([
|
||||
|
||||
Loading…
Reference in New Issue
Block a user