29 lines
597 B
Diff
29 lines
597 B
Diff
From cba65a460d748864feff49bd808c0f80c125ff4c Mon Sep 17 00:00:00 2001
|
|
From: DCCooper <1866858@gmail.com>
|
|
Date: Sat, 22 Jan 2022 16:50:30 +0800
|
|
Subject: [PATCH 21/24] gitignore: style(global): ignore IDE and gomod vendor
|
|
|
|
Signed-off-by: DCCooper <1866858@gmail.com>
|
|
---
|
|
.gitignore | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
index b11cba5..2819bbf 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -11,3 +11,10 @@
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
bin
|
|
+
|
|
+# IDE
|
|
+.vscode/
|
|
+.idea/
|
|
+
|
|
+# go mod vendor
|
|
+vendor
|
|
--
|
|
2.25.1
|
|
|