-
-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathtools.go
More file actions
23 lines (19 loc) · 761 Bytes
/
tools.go
File metadata and controls
23 lines (19 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2026 Yota Hamada
// SPDX-License-Identifier: GPL-3.0-or-later
//go:build tools
package tools
// This package keeps track of tool dependencies, see:
// https://github.com/golang/go/issues/25922
// https://www.jvt.me/posts/2022/06/15/go-tools-dependency-management/
import (
_ "github.com/getkin/kin-openapi/cmd/validate"
_ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint"
_ "github.com/google/addlicense"
_ "github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen"
_ "github.com/rhysd/changelog-from-release/v3"
_ "github.com/segmentio/golines"
_ "github.com/yoheimuta/protolint/cmd/protolint"
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "gotest.tools/gotestsum"
)