github.com/dgraph-io/ristretto@v0.1.2-0.20240116140435-c67e07994f91/.golangci.yml (about)

     1  run:
     2    skip-dirs:
     3    skip-files:
     4  
     5  linters-settings:
     6    lll:
     7      line-length: 120
     8    staticcheck:
     9      checks:
    10        - all
    11        - '-SA1019' # it is okay to use math/rand at times.
    12    gosec:
    13      excludes:
    14        - G404  # it is okay to use math/rand at times.
    15  
    16  linters:
    17    disable-all: true
    18    enable:
    19      - errcheck
    20      - gofmt
    21      - goimports
    22      - gosec
    23      - gosimple
    24      - govet
    25      - ineffassign
    26      - lll
    27      - staticcheck
    28      - unconvert
    29      - unused