Codebase list docker-compose / 09a375ee-e456-470b-96dd-aec76381672f/v2.3.4 .golangci.yml
09a375ee-e456-470b-96dd-aec76381672f/v2.3.4

Tree @09a375ee-e456-470b-96dd-aec76381672f/v2.3.4 (Download .tar.gz)

.golangci.yml @09a375ee-e456-470b-96dd-aec76381672f/v2.3.4raw · history · blame

linters:
  run:
    concurrency: 2
    skip-dirs:
      - tests/composefiles
  enable-all: false
  disable-all: true
  enable:
    - deadcode
    - errcheck
    - gocyclo
    - gofmt
    - goimports
    - revive
    - gosimple
    - govet
    - ineffassign
    - lll
    - misspell
    - nakedret
    - staticcheck
    - structcheck
    - typecheck
    - unconvert
    - unparam
    - unused
    - varcheck
linters-settings:
  gocyclo:
    min-complexity: 16
  lll:
    line-length: 200
issues:
  # golangci hides some golint warnings (the warning about exported things
  # withtout documentation for example), this will make it show them anyway.
  exclude-use-default: false
  exclude:
    - should not use dot imports