From 4d84709369aba835569de96b47dfa4d23ac871d8 Mon Sep 17 00:00:00 2001 From: Roman <1848357+r-52@users.noreply.github.com> Date: Wed, 31 Mar 2021 16:07:31 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feature:=20integrate=20a=20gitignor?= =?UTF-8?q?e=20file=20(#75)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Right now the project has no gitignore file which causes files like `.vscode` to show up as changed/ added files. I've copied the gitignore from the main fiber repo --- .gitignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3d503277 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test +*.tmp + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# IDE files +.vscode +.DS_Store +.idea + +# Misc +*.fiber.gz +*.fasthttp.gz +*.pprof +*.workspace + +# Dependencies +/vendor/ +vendor/ +vendor +/Godeps/