mirror of
https://github.com/mgechev/revive.git
synced 2025-11-23 22:04:49 +02:00
8 lines
323 B
Go
8 lines
323 B
Go
// Package tools is a placeholder for tooling imports, and should not be imported in production code.
|
|
// Despite `go tool` this package is needed to workaround the fact that renovate can't update indirect dependencies.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/v2/pkg/exitcodes" //revive:disable-line
|
|
)
|