From e11908a03807ccbadc0e4c177a5ff1727a34b2af Mon Sep 17 00:00:00 2001 From: Dmitrii Stepanov Date: Wed, 9 Oct 2024 15:42:15 +0300 Subject: [PATCH] [#11] git: Add gitattributes and gitignore files Signed-off-by: Dmitrii Stepanov --- .gitattributes | 1 + .gitignore | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..698be09 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +/go.sum -diff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bfdd2f7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# IDE +.idea +.vscode + +# Vendoring +vendor + +# tempfiles +.DS_Store +*~ +.cache + +temp +tmp + +# binary +bin/ +release/ + +# coverage +coverage.txt +coverage.html