From 6fb44e140fb4249d43d6c1dc694ba20ee15cb264 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Fri, 28 Feb 2020 15:40:15 +0100 Subject: [PATCH] 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. --- .golangci.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .golangci.yml diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 000000000..a3531057e --- /dev/null +++ b/.golangci.yml @@ -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