File: tools.go

package info (click to toggle)
golang-github-lorenzosaino-go-sysctl 0.3.1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: makefile: 44
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
//go:build tools
// +build tools

package sysctl

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