From d1d427057ec94de8027a1f9e3ccfa07648d7a488 Mon Sep 17 00:00:00 2001 From: windyboy Date: Fri, 19 Jul 2024 20:02:03 +0800 Subject: [PATCH] chore: Add .gitignore file to project --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3855db3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +/bin/ +/pkg/ +/build/ + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +# IDEs and editors +/.idea/ +*.swp +*.swo +.vscode/ +*.sublime-workspace + +# OS generated files +.DS_Store* +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Go specific +go.sum +go.mod + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Project-specific +configs/*.toml + +# Logs +*.log + +# Dependency directories (remove the comment below if you want to ignore them) +#vendor/ \ No newline at end of file