feature/gitignore-and-improve-contribution-guideline (#383)
This commit is contained in:
parent
6af9c0dcbb
commit
9f351a2e4f
1 changed files with 22 additions and 0 deletions
22
.gitignore
vendored
22
.gitignore
vendored
|
|
@ -1,5 +1,10 @@
|
||||||
# Binaries
|
# Binaries
|
||||||
bin/
|
bin/
|
||||||
|
*.exe
|
||||||
|
*.exe~
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
## IDE
|
## IDE
|
||||||
*.idea/
|
*.idea/
|
||||||
|
|
@ -8,3 +13,20 @@ bin/
|
||||||
# Terraform
|
# Terraform
|
||||||
**/.terraform
|
**/.terraform
|
||||||
**/terraform.tfstate**
|
**/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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue