github.com/milvus-io/milvus-sdk-go/v2@v2.4.1/.golangci.yml (about)

     1  run:
     2    skip-dirs:
     3      - build
     4      - configs
     5      - deployments
     6      - docs
     7      - scripts
     8      - internal/core
     9  
    10  linters-settings:
    11    golint:
    12      min-confidence: 0.8
    13  
    14    misspell:
    15      locale: US
    16  
    17  linters:
    18    disable-all: true
    19    enable:
    20      - typecheck
    21      - goimports
    22      - misspell
    23      - govet
    24      - ineffassign
    25      - gosimple
    26      - revive
    27  
    28  issues:
    29    exclude-use-default: false
    30    exclude:
    31      - should have a package comment
    32      - should have comment
    33      - should be of the form
    34      - should not use dot imports
    35      - which can be annoying to use
    36    # Maximum issue count per one linter. Set to 0 to disable. Default is 50.
    37    max-issues-per-linter: 0
    38    # Maximum count of issues with same text. Set to 0 to disable. Default is 3.
    39    max-same-issues: 0
    40  service:
    41    golangci-lint-version: 1.27.0 # use the fixed version to not introduce new linters unexpectedly
    42