| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- # This file contains configuration options for golangci-lint.
- # https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml
- run:
- # Timeout for analysis.
- timeout: 5m
- linters:
- enable-all: true
- disable:
- - cyclop
- - copyloopvar
- - depguard
- - dupl
- - err113
- - errname
- - errorlint
- - exhaustive
- - exhaustruct
- - forcetypeassert
- - funlen
- - gochecknoglobals
- - gocognit
- - goconst
- - gocyclo
- - goerr113
- - gomnd
- - gosec
- - inamedparam
- - intrange
- - ireturn
- - maintidx
- - mnd
- - nakedret
- - nestif
- - nlreturn
- - noctx
- - nonamedreturns
- - paralleltest
- - testableexamples
- - testpackage
- - thelper
- - tparallel
- - unparam
- - usestdlibvars
- - varnamelen
- - wrapcheck
- - wsl
- # Deprecated linters
- - deadcode
- - exhaustivestruct
- - exportloopref
- - execinquery
- - golint
- - ifshort
- - interfacer
- - maligned
- - nosnakecase
- - scopelint
- - structcheck
- - varcheck
- linters-settings:
- revive:
- # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md
- rules:
- - name: indent-error-flow
- - name: use-any
- lll:
- line-length: 130
- stylecheck:
- checks: [
- "all",
- "-ST1000", # at least one file in a package should have a package comment
- ]
- gocritic:
- enabled-tags:
- - diagnostic
- - experimental
- - opinionated
- - performance
- - style
- disabled-checks:
- - deferInLoop
- - importShadow
- - sloppyReassign
- - unnamedResult
- - whyNoLint
- govet:
- enable-all: true
- disable:
- - fieldalignment
- - shadow
- issues:
- # Show all issues from a linter.
- max-issues-per-linter: 0
- # Show all issues with the same text.
- max-same-issues: 0
- include:
- - EXC0011 # include issues about comments from `stylecheck`
- exclude-rules:
- # Exclude some linters from running on tests files.
- - path: _test\.go
- linters:
- - lll
|