1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00
Files
opentelemetry-go/internal/tools/tools.go
T

22 lines
671 B
Go
Raw Normal View History

// Copyright The OpenTelemetry Authors
2024-02-29 07:05:28 +01:00
// SPDX-License-Identifier: Apache-2.0
2021-09-28 04:37:26 +02:00
//go:build tools
2019-06-18 17:09:49 -07:00
// +build tools
package tools // import "go.opentelemetry.io/otel/internal/tools"
2019-06-18 17:09:49 -07:00
import (
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/gogo/protobuf/protoc-gen-gogofast"
_ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint"
2021-09-28 04:37:26 +02:00
_ "github.com/jcchavezs/porto/cmd/porto"
2021-08-14 17:10:15 +02:00
_ "github.com/wadey/gocovmerge"
2022-05-06 07:40:59 -07:00
_ "go.opentelemetry.io/build-tools/crosslink"
_ "go.opentelemetry.io/build-tools/gotmpl"
2021-10-01 16:20:32 -04:00
_ "go.opentelemetry.io/build-tools/multimod"
2023-08-14 16:42:08 +02:00
_ "golang.org/x/exp/cmd/gorelease"
_ "golang.org/x/tools/cmd/stringer"
_ "golang.org/x/vuln/cmd/govulncheck"
2019-06-18 17:09:49 -07:00
)