| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- linters:
- enable:
- - exportloopref # Checks for pointers to enclosing loop variables
- - gofmt
- - goimports
- - gosec
- - ineffassign
- - misspell
- - nolintlint
- - revive
- - staticcheck
- - tenv # Detects using os.Setenv instead of t.Setenv since Go 1.17
- - unconvert
- - unused
- - vet
- - dupword # Checks for duplicate words in the source code
- disable:
- - errcheck
- issues:
- include:
- - EXC0002
- max-issues-per-linter: 0
- max-same-issues: 0
- # Only using / doesn't work due to https://github.com/golangci/golangci-lint/issues/1398.
- exclude-rules:
- - path: 'cmd[\\/]containerd[\\/]builtins[\\/]'
- text: "blank-imports:"
- - path: 'contrib[\\/]fuzz[\\/]'
- text: "exported: func name will be used as fuzz.Fuzz"
- - path: 'archive[\\/]tarheader[\\/]'
- # conversion is necessary on Linux, unnecessary on macOS
- text: "unnecessary conversion"
- # FIXME temporarily suppress deprecation warnings for the logs package. See https://github.com/containerd/containerd/pull/9086
- - text: "SA1019: log\\.(G|L|Fields|Entry|RFC3339NanoFixed|Level|TraceLevel|DebugLevel|InfoLevel|WarnLevel|ErrorLevel|FatalLevel|PanicLevel|SetLevel|GetLevel|OutputFormat|TextFormat|JSONFormat|SetFormat|WithLogger|GetLogger)"
- linters:
- - staticcheck
- - text: "SA1019: logtest\\.WithT"
- linters:
- - staticcheck
- linters-settings:
- gosec:
- # The following issues surfaced when `gosec` linter
- # was enabled. They are temporarily excluded to unblock
- # the existing workflow, but still to be addressed by
- # future works.
- excludes:
- - G204
- - G305
- - G306
- - G402
- - G404
- run:
- timeout: 8m
- skip-dirs:
- - api
- - cluster
- - design
- - docs
- - docs/man
- - releases
- - reports
- - test # e2e scripts
|