mirror of
https://github.com/grafana/grafana.git
synced 2026-03-13 15:29:48 +08:00
This PR moves the import of `promlib` from `grafana/grafana` to the newly created `grafana/grafana-prometheus-datasource`. The code at `grafana/grafana-prometheus-datasource/pkg/promlib` is a copy of the code from `grafana/grafana/pkg/promlib`, so should not produce any changes in behavior. This PR does not remove `pkg/promlib`, but that is the intention in followup PRs, when we're certain it's safe to do so.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
go 1.25.8
|
|
|
|
// 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.
|
|
|
|
use (
|
|
. // skip:golangci-lint
|
|
./apps/advisor
|
|
./apps/alerting/alertenrichment
|
|
./apps/alerting/historian
|
|
./apps/alerting/notifications
|
|
./apps/alerting/rules
|
|
./apps/annotation
|
|
./apps/collections
|
|
./apps/correlations
|
|
./apps/dashboard
|
|
./apps/dashvalidator
|
|
./apps/example
|
|
./apps/folder
|
|
./apps/iam
|
|
./apps/logsdrilldown
|
|
./apps/playlist
|
|
./apps/plugins
|
|
./apps/preferences
|
|
./apps/provisioning
|
|
./apps/quotas
|
|
./apps/scope
|
|
./apps/secret
|
|
./apps/shorturl
|
|
./pkg/aggregator
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./pkg/build
|
|
./pkg/build/wire // skip:golangci-lint
|
|
./pkg/codegen
|
|
./pkg/infra/features
|
|
./pkg/plugins
|
|
./pkg/plugins/codegen
|
|
./pkg/semconv
|
|
./pkg/storage/unified/resource/kv
|
|
)
|
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20260225120258-18275ca76b0c
|
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
|