From 02d900d6a579b2247033c0e76869eb539f572798 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Tue, 19 Oct 2021 19:11:31 +0100 Subject: [PATCH] Add golang-ci configration --- .golangci.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .golangci.yaml diff --git a/.golangci.yaml b/.golangci.yaml new file mode 100644 index 00000000..5376f1be --- /dev/null +++ b/.golangci.yaml @@ -0,0 +1,17 @@ +--- +linters: + enable-all: true + disable: + - exhaustivestruct + - revive + - lll + - interfacer + - scopelint + - maligned + - golint + - gofmt + - gochecknoglobals + - gochecknoinits + - gocognit + - funlen + - exhaustivestruct