github.com/FollowTheProcess/tag@v0.4.2/.golangci.yml (about)

     1  linters:
     2    disable-all: true
     3    enable:
     4      - bodyclose
     5      - containedctx
     6      - durationcheck
     7      - errcheck
     8      - errchkjson
     9      - errname
    10      - exhaustive
    11      - exportloopref
    12      - goconst
    13      - gocritic
    14      - gocyclo
    15      - godot
    16      - gofumpt
    17      - goimports
    18      - gomnd
    19      - gosimple
    20      - govet
    21      - ineffassign
    22      - misspell
    23      - nilerr
    24      - nilnil
    25      - nolintlint
    26      - predeclared
    27      - reassign
    28      - revive
    29      - staticcheck
    30      - tagliatelle
    31      - tenv
    32      - thelper
    33      - unconvert
    34      - unparam
    35      - unused
    36      - whitespace
    37  
    38  linters-settings:
    39    gocyclo:
    40      min-complexity: 20
    41  
    42    staticcheck:
    43      go: "1.20"
    44      checks: ["all"]
    45  
    46    errcheck:
    47      check-type-assertions: true
    48      check-blank: true
    49  
    50    gosimple:
    51      checks: ["all"]
    52  
    53    govet:
    54      enable-all: true
    55  
    56    goconst:
    57      ignore-tests: true