From 6c10aa56984a7fd46da77c35aa827e2158da4fbf Mon Sep 17 00:00:00 2001 From: Patricio Whittingslow Date: Fri, 19 Jan 2024 11:40:01 -0300 Subject: [PATCH] Create .gitignore --- .gitignore | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5d9618 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# Go workspaces. +go.work +go.work.sum +# Test binary, built with `go test -c` +*.test +# Dependency directories after running `go mod vendor` +vendor/ + +# Binaries for programs and plugins +*.elf +*.uf2 +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.hex +# `__debug_bin` Debug binary generated in VSCode when using the built-in debugger. +*bin + +# IDE +.vscode/ + +# For local development and testing create `local` directories. +local + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out +*.cov + +# Log files and common data formats. +*.log +*.Log +*.LOG +*.csv +*.tsv +*.dat +*.json +*.xlsx +*.xls +*.zip +*.gz +*.tar + +# If running a python script. +*/__pycache__/*