1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/.golangci.yml
2023-11-04 20:29:05 +03:00

44 lines
715 B
YAML

run:
skip-dirs:
- .tmp
- vendor
linters:
disable-all: true
enable:
# - errcheck
- gocritic
# - goconst
- goimports
- gosimple
- govet
- ineffassign
- staticcheck
- stylecheck
- typecheck
- unused
linters-settings:
govet:
# report about shadowed variables
check-shadowing: true
issues:
exclude-rules:
# - path: _test\.go
# linters:
# - goconst
# False positives on CGO generated code
- linters: [staticcheck]
text: "SA4000:"
path: vips/*
# False positives on CGO generated code
- linters: [gocritic]
text: "dupSubExpr"
path: vips/*
- linters: [stylecheck]
text: "ST1005:"