From 47910f18f8facf3b11db769f5bba89bc2c2969e1 Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Wed, 19 Feb 2025 20:44:44 +0100 Subject: [PATCH] chore: setup golangci-lint config file Signed-off-by: Matthieu MOREL --- .gitattributes | 4 ++++ .golangci.yaml | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitattributes create mode 100644 .golangci.yaml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a681ce3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +# ensure that line endings for Windows builds are properly formatted +# see https://github.com/golangci/golangci-lint-action?tab=readme-ov-file#how-to-use +# at "Multiple OS Example" section +*.go text eol=lf diff --git a/.golangci.yaml b/.golangci.yaml new file mode 100644 index 0000000..822693a --- /dev/null +++ b/.golangci.yaml @@ -0,0 +1,16 @@ +issues: + max-same-issues: 0 +linters: + disable-all: true + enable: # please keep this alphabetized + - errcheck + - gofmt + - goimports + - gosimple + - govet + - ineffassign + - staticcheck + - unused +linters-settings: # please keep this alphabetized + goimports: + local-prefixes: go.etcd.io # Put imports beginning with prefix after 3rd-party packages.