You've already forked opentelemetry-go
							
							
				mirror of
				https://github.com/open-telemetry/opentelemetry-go.git
				synced 2025-10-31 00:07:40 +02:00 
			
		
		
		
	* replaces golint by revive and fix newly reported linter issues * add pull request ID to CHANGELOG.md * Update internal/matchers/temporal_matcher.go Co-authored-by: Robert Pająk <pellared@hotmail.com> * fix pull request issues * explains why the linter is disabled * Update semconv/http.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * Update metric/unit/unit.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * restores 'example/passthrough/go.sum' to original state * fix after rebase * export ErrInvalidAsyncRunner again and add nolint * Update trace/tracestate.go Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> * Update sdk/metric/sdk.go Co-authored-by: Aaron Clawson <Aaron.Clawson@gmail.com> * Fix ContextWithoutBaggage comment * Fix SpanEndOption comment Co-authored-by: Robert Pająk <pellared@hotmail.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> Co-authored-by: Aaron Clawson <Aaron.Clawson@gmail.com> Co-authored-by: Tyler Yahn <codingalias@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			750 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			750 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # See https://github.com/golangci/golangci-lint#config-file
 | |
| run:
 | |
|   issues-exit-code: 1 #Default
 | |
|   tests: true #Default
 | |
| 
 | |
| linters:
 | |
|   enable:
 | |
|     - misspell
 | |
|     - goimports
 | |
|     - revive
 | |
|     - gofmt
 | |
| 
 | |
| issues:
 | |
|   exclude-rules:
 | |
|     # helpers in tests often (rightfully) pass a *testing.T as their first argument
 | |
|     - path: _test\.go
 | |
|       text: "context.Context should be the first parameter of a function"
 | |
|       linters:
 | |
|         - revive
 | |
|     # Yes, they are, but it's okay in a test
 | |
|     - path: _test\.go
 | |
|       text: "exported func.*returns unexported type.*which can be annoying to use"
 | |
|       linters:
 | |
|         - revive
 | |
| 
 | |
| linters-settings:
 | |
|   misspell:
 | |
|     locale: US
 | |
|     ignore-words:
 | |
|       - cancelled
 | |
|   goimports:
 | |
|     local-prefixes: go.opentelemetry.io
 |