mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-10 00:07:13 +02:00
13 lines
350 B
Python
13 lines
350 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["common.go"],
|
|
importpath = "github.com/google/go-jsonnet/linter/internal/common",
|
|
visibility = ["//linter:__subpackages__"],
|
|
deps = [
|
|
"//ast:go_default_library",
|
|
"//internal/errors:go_default_library",
|
|
],
|
|
)
|