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.