Codebase list golang-github-ncw-swift / f80a3d82-4337-435d-ba2b-4e87693bbcdb/main .golangci.yml
f80a3d82-4337-435d-ba2b-4e87693bbcdb/main

Tree @f80a3d82-4337-435d-ba2b-4e87693bbcdb/main (Download .tar.gz)

.golangci.yml @f80a3d82-4337-435d-ba2b-4e87693bbcdb/mainraw · history · blame

# golangci-lint configuration options

linters:
  enable:
    - deadcode
    - errcheck
    - goimports
    # - revive
    - ineffassign
    - structcheck
    - varcheck
    - govet
    - unconvert
  disable-all: true

issues:
  # Enable some lints excluded by default
  exclude-use-default: false

  # Maximum issues count per one linter. Set to 0 to disable. Default is 50.
  max-per-linter: 0

  # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
  max-same-issues: 0