Codebase list golang-github-go-openapi-analysis / debian/0.15.0-1 .golangci.yml
debian/0.15.0-1

Tree @debian/0.15.0-1 (Download .tar.gz)

.golangci.yml @debian/0.15.0-1raw · history · blame

linters-settings:
  govet:
    check-shadowing: true
  golint:
    min-confidence: 0
  gocyclo:
    min-complexity: 30
  maligned:
    suggest-new: true
  dupl:
    threshold: 100
  goconst:
    min-len: 2
    min-occurrences: 4

linters:
  enable-all: true
  disable:
    - maligned