refactor: drop ignores, use golangci-lint for check
continuous-integration/drone/push Build is failing Details

This commit is contained in:
decentral1se 2023-12-19 16:16:37 +01:00
parent a78195f365
commit d49df79339
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 2 additions and 10 deletions

View File

@ -1,9 +0,0 @@
linters-settings:
staticcheck:
checks:
- all
- "U1000"
linters:
disable:
- unused

View File

@ -7,7 +7,8 @@ format:
check:
@test -z $$(gofmt -l .) || \
(echo "gofmt: formatting issue - run 'make format' to resolve" && exit 1)
(echo "gofmt: formatting issue - run 'make format' to resolve" && exit 1) && \
golangci-lint run ./...
clean:
@find -type f -name "*.log" -exec rm '{}' \;