run: # which dirs to skip: issues from them won't be reported; # can use regexp here: generated.*, regexp is applied on full path; # default value is empty list, but default dirs are skipped independently # from this option's value (see skip-dirs-use-default). # "/" will be replaced by current OS file path separator to properly work # on Windows. skip-dirs: - internal/mocks # default is true. Enables skipping of directories: # vendor$, third_party$, testdata$, examples$, Godeps$, builtin$ skip-dirs-use-default: false # by default isn't set. If set we pass it to "go list -mod={option}". From "go help modules": # If invoked with -mod=readonly, the go command is disallowed from the implicit # automatic updating of go.mod described above. Instead, it fails when any changes # to go.mod are needed. This setting is most useful to check that go.mod does # not need updates, such as in a continuous integration and testing system. # If invoked with -mod=vendor, the go command assumes that the vendor # directory holds the correct copies of dependencies and ignores # the dependency descriptions in go.mod. modules-download-mode: readonly output: format: colored-line-number print-issued-lines: true print-linter-name: true linters-settings: gocyclo: min-complexity: 10 govet: check-shadowing: false goconst: min-len: 3 min-occurrences: 3 goimports: local-prefixes: gitlab.com/gitlab-org/gitlab-pages linters: disable-all: true enable: - bodyclose - deadcode - dogsled - errorlint - gci - goconst - gocyclo - goimports - golint - gosimple - govet - gosec - ineffassign - misspell - structcheck - typecheck - unconvert - unparam - unused - varcheck - whitespace - nolintlint fast: false issues: # Excluding configuration per-path, per-linter, per-text and per-source exclude-rules: - path: _test\.go linters: - bodyclose - gosec - goconst - path: "internal/fixture/fixtures.go" linters: - gosec # Maximum issues count per one linter. Set to 0 to disable. Default is 50. max-issues-per-linter: 0 # Maximum count of issues with the same text. Set to 0 to disable. Default is 3. max-same-issues: 0