From 9e46799cd427f48cfaf96073fcad98394551e02d Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Mon, 17 Oct 2022 15:30:43 +0300 Subject: [PATCH] [#1910] .golangci.yml: Add more useful linkers Steal them from the neo-go repo. Signed-off-by: Evgenii Stratonikov --- .golangci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 85c1b3a48..25b85bf2d 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -41,10 +41,14 @@ linters: - unused # extra linters + - bidichk + - durationcheck - exhaustive + - exportloopref - gofmt - - whitespace - goimports + - reassign + - whitespace disable-all: true fast: false