go-import-redirector/.golangci.yaml

34 lines
464 B
YAML
Raw Permalink Normal View History

2023-11-25 19:59:05 +00:00
linters-settings:
gofmt:
simplify: true
misspell:
locale: US
gofumpt:
lang-version: "1.20"
extra-rules: true
errorlint:
errorf-multi: true
linters:
disable-all: true
enable:
- bidichk
- errcheck
- gofmt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- revive
- staticcheck
- typecheck
- unused
- whitespace
- gofumpt
- errorlint
run:
timeout: 5m
go: '1.20'