33 lines
474 B
YAML
33 lines
474 B
YAML
run:
|
|
timeout: 5m
|
|
modules-download-mode: readonly
|
|
|
|
linters:
|
|
enable:
|
|
- gofmt
|
|
- govet
|
|
- goimports
|
|
- errcheck
|
|
- staticcheck
|
|
- unused
|
|
- gosimple
|
|
- ineffassign
|
|
- typecheck
|
|
|
|
linters-settings:
|
|
gofmt:
|
|
simplify: true
|
|
goimports:
|
|
local-prefixes: gitea.thegux.fr
|
|
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- errcheck
|
|
- staticcheck
|
|
exclude-dirs:
|
|
- ..
|
|
|
|
service:
|
|
golangci-lint-version: 1.54.x |