mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| go 1.24.1
 | |
| 
 | |
| // 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
 | |
| 	./.citools/bra
 | |
| 	./.citools/cog
 | |
| 	./.citools/cue
 | |
| 	./.citools/golangci-lint
 | |
| 	./.citools/jb
 | |
| 	./.citools/lefthook
 | |
| 	./.citools/swagger
 | |
| 	./apps/advisor
 | |
| 	./apps/alerting/notifications
 | |
| 	./apps/dashboard
 | |
| 	./apps/investigations
 | |
| 	./apps/playlist
 | |
| 	./pkg/aggregator
 | |
| 	./pkg/apimachinery
 | |
| 	./pkg/apis/folder
 | |
| 	./pkg/apis/secret // @grafana/grafana-operator-experience-squad
 | |
| 	./pkg/apiserver
 | |
| 	./pkg/build
 | |
| 	./pkg/build/wire // skip:golangci-lint
 | |
| 	./pkg/codegen
 | |
| 	./pkg/plugins/codegen
 | |
| 	./pkg/promlib
 | |
| 	./pkg/semconv
 | |
| 	./pkg/storage/unified/apistore
 | |
| 	./pkg/storage/unified/resource
 | |
| 	./pkg/util/xorm // skip:golangci-lint
 | |
| )
 | |
| 
 | |
| // 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
 | |
| 
 | |
| replace github.com/getkin/kin-openapi => github.com/getkin/kin-openapi v0.126.0
 | |
| 
 | |
| replace github.com/prometheus/alertmanager => github.com/grafana/prometheus-alertmanager v0.25.1-0.20250331083058-4563aec7a975
 | |
| 
 | |
| replace github.com/crewjam/saml => github.com/grafana/saml v0.4.15-0.20240917091248-ae3bbdad8a56
 |