Browse Source

add ide config to .gitignore (#18)

非法操作 6 months ago
parent
commit
2f8d22fcc6

+ 1 - 0
.gitignore

@@ -1,6 +1,7 @@
 release/
 logs/
 .vscode/
+.idea/
 .env
 cmd/**/__debug_bin*
 *.zip

+ 3 - 0
cmd/commandline/plugin/templates/python/.difyignore

@@ -164,6 +164,9 @@ cython_debug/
 #  option (not recommended) you can uncomment the following to ignore the entire idea folder.
 .idea/
 
+# Vscode
+.vscode/
+
 # Git
 .git/
 .gitignore

+ 4 - 1
cmd/commandline/plugin/templates/python/.gitignore

@@ -165,4 +165,7 @@ cython_debug/
 #  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
 #  and can be added to the global gitignore or merged into this file.  For a more nuclear
 #  option (not recommended) you can uncomment the following to ignore the entire idea folder.
-#.idea/
+.idea/
+
+# Vscode
+.vscode/