Compare commits

...

3 Commits

Author SHA1 Message Date
e88f7df3e1
chore(deps): update docker.io/golangci/golangci-lint docker tag to v1.63.4
Some checks reported errors
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build encountered an error
2025-01-08 20:10:24 +00:00
b56521645e
test(golangci): adapt list of default linters
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2025-01-08 19:11:04 +01:00
95a3fed462
test(golangci): adapt golang-ci configuration 2025-01-08 19:09:30 +01:00
2 changed files with 5 additions and 6 deletions

View File

@ -22,7 +22,7 @@ steps:
- name: golangci lint - name: golangci lint
commands: commands:
- golangci-lint run - golangci-lint run
image: docker.io/golangci/golangci-lint:v1.57.2-alpine image: docker.io/golangci/golangci-lint:v1.63.4-alpine
resources: resources:
limits: limits:
cpu: 500 cpu: 500

View File

@ -1,6 +1,8 @@
run: issues:
skip-dirs: exclude-dirs:
- it - it
run:
timeout: 10m timeout: 10m
tests: true tests: true
@ -8,16 +10,13 @@ linters:
disable-all: true disable-all: true
enable: enable:
# Default # Default
- deadcode
- errcheck - errcheck
- gosimple - gosimple
- govet - govet
- ineffassign - ineffassign
- staticcheck - staticcheck
- structcheck
- typecheck - typecheck
- unused - unused
- varcheck
# Additionally linters # Additionally linters
- bodyclose - bodyclose