...

Text file src/gopkg.in/ini.v1/.golangci.yml

Documentation: gopkg.in/ini.v1

     1linters-settings:
     2  staticcheck:
     3    checks: [
     4      "all",
     5      "-SA1019" # There are valid use cases of strings.Title
     6    ]
     7  nakedret:
     8    max-func-lines: 0 # Disallow any unnamed return statement
     9
    10linters:
    11  enable:
    12    - deadcode
    13    - errcheck
    14    - gosimple
    15    - govet
    16    - ineffassign
    17    - staticcheck
    18    - structcheck
    19    - typecheck
    20    - unused
    21    - varcheck
    22    - nakedret
    23    - gofmt
    24    - rowserrcheck
    25    - unconvert
    26    - goimports
    27    - unparam

View as plain text