...

Text file src/github.com/ory/viper/.golangci.yml

Documentation: github.com/ory/viper

     1linters-settings:
     2    golint:
     3        min-confidence: 0.1
     4    goimports:
     5        local-prefixes: github.com/spf13/viper
     6
     7linters:
     8    enable-all: true
     9    disable:
    10        - funlen
    11        - maligned
    12
    13        # TODO: fix me
    14        - wsl
    15        - gochecknoinits
    16        - gosimple
    17        - gochecknoglobals
    18        - errcheck
    19        - lll
    20        - godox
    21        - scopelint
    22        - gocyclo
    23        - gocognit
    24        - gocritic
    25
    26service:
    27    golangci-lint-version: 1.21.x

View as plain text