mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	 6a429bb0d6
			
		
	
	6a429bb0d6
	
	
	
		
			
			* deprecation check * adding script * add execute permission to script * revert changes * adding the script back * added working script for local and GHA * give execute permissions * updating revgrep * adding changes to script, tools * run go mod tidy * removing default ref * make bootstrap * adding to makefile
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| //go:build tools
 | |
| 
 | |
| // This file ensures tool dependencies are kept in sync.  This is the
 | |
| // recommended way of doing this according to
 | |
| // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
 | |
| // To install the following tools at the version used by this repo run:
 | |
| // $ make bootstrap
 | |
| // or
 | |
| // $ go generate -tags tools tools/tools.go
 | |
| 
 | |
| package tools
 | |
| 
 | |
| //go:generate go install golang.org/x/tools/cmd/goimports
 | |
| //go:generate go install github.com/client9/misspell/cmd/misspell
 | |
| //go:generate go install mvdan.cc/gofumpt
 | |
| //go:generate go install google.golang.org/protobuf/cmd/protoc-gen-go
 | |
| //go:generate go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
 | |
| //go:generate go install github.com/favadi/protoc-go-inject-tag
 | |
| //go:generate go install honnef.co/go/tools/cmd/staticcheck
 | |
| //go:generate go install github.com/golangci/revgrep/cmd/revgrep
 | |
| //go:generate go install gotest.tools/gotestsum
 | |
| import (
 | |
| 	_ "golang.org/x/tools/cmd/goimports"
 | |
| 
 | |
| 	_ "github.com/client9/misspell/cmd/misspell"
 | |
| 
 | |
| 	_ "mvdan.cc/gofumpt"
 | |
| 
 | |
| 	_ "google.golang.org/protobuf/cmd/protoc-gen-go"
 | |
| 
 | |
| 	_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
 | |
| 
 | |
| 	_ "github.com/favadi/protoc-go-inject-tag"
 | |
| 
 | |
| 	_ "github.com/golangci/revgrep/cmd/revgrep"
 | |
| 
 | |
| 	_ "gotest.tools/gotestsum"
 | |
| 
 | |
| 	_ "honnef.co/go/tools/cmd/staticcheck"
 | |
| )
 |