...

Text file src/github.com/hashicorp/golang-lru/.golangci.yml

Documentation: github.com/hashicorp/golang-lru

     1linters:
     2  enable:
     3    - megacheck
     4    - revive
     5    - govet
     6    - unconvert
     7    - megacheck
     8    - gas
     9    - gocyclo
    10    - dupl
    11    - misspell
    12    - unparam
    13    - unused
    14    - typecheck
    15    - ineffassign
    16    - stylecheck
    17    - exportloopref
    18    - gocritic
    19    - nakedret
    20    - gosimple
    21    - prealloc
    22  fast: false
    23  disable-all: true
    24
    25issues:
    26  exclude-rules:
    27    - path: _test\.go
    28      linters:
    29        - dupl
    30  exclude-use-default: false

View as plain text