From 7b31ac0149d147cfb17084fe842b3e6b80cfeac2 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Fri, 29 Nov 2024 07:52:29 -0500 Subject: [PATCH] build: ignore Go, direnv and dotenv files --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..823ab97 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Refer to golangci-lint's example config file for more options and information: +# https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml + +run: + timeout: 5m + modules-download-mode: readonly + +linters: + enable: + - errcheck + - goimports + - golint + - govet + - staticcheck + +issues: + exclude-use-default: false + max-issues-per-linter: 0 + max-same-issues: 0