mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
d17826fb9d
* Add analysis template with failing test * Works for the most common use case * Progress on tool and more test cases * Improvements * handle nil * works for the most part * Fix some TODOs in the tool * Fix some TODOs in the tool
27 lines
811 B
Python
27 lines
811 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["analyzer.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/analyzers/logruswitherror",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@org_golang_x_tools//go/analysis:go_default_library",
|
|
"@org_golang_x_tools//go/analysis/passes/inspect:go_default_library",
|
|
"@org_golang_x_tools//go/ast/inspector:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["analyzer_test.go"],
|
|
data = glob(["testdata/**"]) + [
|
|
"@go_sdk//:files",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//build/bazel:go_default_library",
|
|
"@org_golang_x_tools//go/analysis/analysistest:go_default_library",
|
|
],
|
|
)
|