github.com/AngusLu/go-swagger@v0.28.0/.golangci.yml (about)

     1  linters-settings:
     2    govet:
     3      check-shadowing: true
     4    golint:
     5      min-confidence: 0
     6    gocyclo:
     7      min-complexity: 25
     8    maligned:
     9      suggest-new: true
    10    dupl:
    11      threshold: 200
    12    goconst:
    13      min-len: 2
    14      min-occurrences: 2
    15  
    16  run:
    17    skip-dirs:
    18      - playground
    19      - fixtures
    20      - cmd
    21  
    22  linters:
    23    enable:
    24      - golint
    25      - gocritic
    26      - stylecheck
    27      # - goimports
    28      - gosec
    29      - unconvert
    30    disable:
    31      - maligned
    32      - unparam
    33      - lll
    34      - gochecknoinits
    35      - gochecknoglobals
    36      - dupl
    37      - nakedret
    38