...

Text file src/github.com/launchdarkly/go-jsonstream/v3/.golangci.yml

Documentation: github.com/launchdarkly/go-jsonstream/v3

     1run:
     2  deadline: 120s
     3  tests: false
     4  skip-dirs: commontest
     5
     6linters:
     7  enable:
     8    - bodyclose
     9    - deadcode
    10    - depguard
    11    - dupl
    12    - errcheck
    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  
    49issues:
    50  exclude-use-default: false
    51  max-same-issues: 1000
    52  max-per-linter: 1000

View as plain text