1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 13:21:45 +00:00
Files
pocket-id/backend/.golangci.yml
2025-03-27 17:46:10 +01:00

26 lines
337 B
YAML

linters:
# Disable all linters.
# Default: false
disable-all: true
enable:
- errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- unused
- gosec
- gocognit
presets:
- bugs
- sql
exclusions:
paths:
- internal/service/test_service.go
run:
timeout: "5m"
tests: true