2024-08-21 23:40:42 +08:00
|
|
|
go 1.23.0
|
2024-02-23 21:54:24 +08:00
|
|
|
|
2024-08-09 04:51:17 +08:00
|
|
|
// The `skip:golangci-lint` comment tag is used to exclude the package from the `golangci-lint` GitHub Action.
|
|
|
|
// The module at the root of the repo (`.`) is excluded because ./pkg/... is included manually in the `golangci-lint` configuration.
|
|
|
|
|
2024-02-23 21:54:24 +08:00
|
|
|
use (
|
2024-08-09 04:51:17 +08:00
|
|
|
. // skip:golangci-lint
|
2024-08-14 03:28:17 +08:00
|
|
|
./pkg/aggregator
|
2024-02-24 04:15:43 +08:00
|
|
|
./pkg/apimachinery
|
|
|
|
./pkg/apiserver
|
2024-06-15 00:35:30 +08:00
|
|
|
./pkg/build
|
2024-08-09 04:51:17 +08:00
|
|
|
./pkg/build/wire // skip:golangci-lint
|
2024-03-12 00:22:33 +08:00
|
|
|
./pkg/promlib
|
2024-08-02 20:35:18 +08:00
|
|
|
./pkg/semconv
|
2024-06-20 21:11:21 +08:00
|
|
|
./pkg/storage/unified/resource
|
2024-08-09 04:51:17 +08:00
|
|
|
./pkg/util/xorm // skip:golangci-lint
|
2024-02-23 21:54:24 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// when we release xorm we would like to release it like github.com/grafana/grafana/pkg/util/xorm
|
|
|
|
// but we don't want to change all the imports. so we use replace to handle this situation
|
|
|
|
replace xorm.io/xorm => ./pkg/util/xorm
|