...

Text file src/github.com/launchdarkly/go-server-sdk/v6/.golangci.yml

Documentation: github.com/launchdarkly/go-server-sdk/v6

     1run:
     2  deadline: 120s
     3  tests: false
     4
     5linters:
     6  enable:
     7    - bodyclose
     8    - deadcode
     9    - depguard
    10    - dupl
    11    - errcheck
    12    - exportloopref
    13    - goconst
    14    - gochecknoglobals
    15    - gochecknoinits
    16    - goconst
    17    - gocritic
    18    - gocyclo
    19    - godox
    20    - gofmt
    21    - goimports
    22    - gosec
    23    - gosimple
    24    - govet
    25    - ineffassign
    26    - lll
    27    - megacheck
    28    - misspell
    29    - nakedret
    30    - nolintlint
    31    - prealloc
    32    - revive
    33    - staticcheck
    34    - stylecheck
    35    - typecheck
    36    - unconvert
    37    - unparam
    38    - unused
    39    - varcheck
    40    - whitespace
    41  fast: false
    42
    43linters-settings:
    44  gofmt:
    45    simplify: false
    46  goimports:
    47    local-prefixes: gopkg.in/launchdarkly,github.com/launchdarkly
    48  revive:
    49    rules:
    50      - name: exported
    51        arguments:
    52          - disableStutteringCheck
    53
    54issues:
    55  exclude-use-default: false
    56  max-same-issues: 1000
    57  max-per-linter: 1000

View as plain text