* WIP * Generate API * use different logging, change typing as recommended * Add feature flag and only add to installer when enabled * add codeowner * Lint/fmt * fix dockerfile * move from UID to group/name reference * add generated code * change from enterprise build * build workspace * Remove deprecated field, build api, build for enterprise, build workspace * Not sure what caused this.. * Rebuild? * Fix this file * update sdk * update sdk * fix workspace * fix test build * add to go.mod --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
37 lines
989 B
Plaintext
37 lines
989 B
Plaintext
go 1.24.6
|
|
|
|
// 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/notifications
|
|
./apps/alerting/rules
|
|
./apps/correlations
|
|
./apps/dashboard
|
|
./apps/folder
|
|
./apps/iam
|
|
./apps/investigations
|
|
./apps/playlist
|
|
./apps/plugins
|
|
./apps/preferences
|
|
./apps/provisioning
|
|
./apps/secret
|
|
./apps/shorturl
|
|
./pkg/aggregator
|
|
./pkg/apimachinery
|
|
./pkg/apiserver
|
|
./pkg/build
|
|
./pkg/build/wire // skip:golangci-lint
|
|
./pkg/codegen
|
|
./pkg/plugins/codegen
|
|
./pkg/promlib
|
|
./pkg/semconv
|
|
)
|
|
|
|
replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20250911094103-5456b6e45604
|
|
|
|
replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
|