File: tools.go

package info (click to toggle)
golang-github-rican7-retry 0.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, experimental, forky, sid, trixie
  • size: 136 kB
  • sloc: makefile: 47
file content (17 lines) | stat: -rw-r--r-- 504 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Package tools provides tools for development.
//
// It follows the pattern set-forth in the wiki:
//  - https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
//  - https://github.com/go-modules-by-example/index/tree/4ea90b07f9/010_tools
//
// Copyright © 2021 Trevor N. Suarez (Rican7)
//
// +build tools
package tools

import (
	// Tools for development
	_ "golang.org/x/lint/golint"
	_ "golang.org/x/tools/cmd/goimports"
	_ "honnef.co/go/tools/cmd/staticcheck"
)