From 9f351a2e4f6a696ab1aa24046e12245a6098e17d Mon Sep 17 00:00:00 2001 From: stackit-pipeline <142982727+stackit-pipeline@users.noreply.github.com> Date: Fri, 31 May 2024 10:32:31 +0200 Subject: [PATCH] feature/gitignore-and-improve-contribution-guideline (#383) --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitignore b/.gitignore index de462cea..bed37a38 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,10 @@ # Binaries bin/ +*.exe +*.exe~ +*.dll +*.so +*.dylib ## IDE *.idea/ @@ -8,3 +13,20 @@ bin/ # Terraform **/.terraform **/terraform.tfstate** +.terraform.lock.hcl +.terraform.tfstate.lock.info +main.tf +example.tf +index.tf + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories +vendor/ + +# Go workspace file +go.work