go-simpler.org/musttag@v0.12.2/.golangci.yml (about)

     1  linters:
     2    disable-all: true
     3    enable:
     4      # enabled by default:
     5      - errcheck
     6      - gosimple
     7      - govet
     8      - ineffassign
     9      - staticcheck
    10      - typecheck
    11      - unused
    12      # disabled by default:
    13      - gocritic
    14      - gofumpt
    15  
    16  linters-settings:
    17    gocritic:
    18      enabled-tags:
    19        - diagnostic
    20        - style
    21        - performance
    22        - experimental
    23        - opinionated