ci/lint: show all errors

golangci-lint hides errors if there are a lot of them. I think it's more
convenient for the CI to show them all, so we can fix them all at once.
This commit is contained in:
Ondřej Budai 2020-02-28 15:40:15 +01:00 committed by Tom Gundersen
parent 7de9b88a3e
commit 6fb44e140f

6
.golangci.yml Normal file
View file

@ -0,0 +1,6 @@
issues:
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0