Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,12 @@ linters:
- revive
path: example.*_test\.go
text: calls to (.+) only in main[(][)] or init[(][)] functions
# Ignore the meaningless types package name until we settle on a better name.
# See: https://github.com/open-telemetry/opentelemetry-go/issues/6869.
- linters:
- revive
path: ^schema/v1\.(0|1)/types/types\.go$
text: avoid meaningless package names
# It's okay to not run gosec and perfsprint in a test.
- linters:
- gosec
Expand Down
Loading