We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b6d9b0 + 4e89ae3 commit cb80974Copy full SHA for cb80974
1 file changed
community/Golang/Go.AllowList.gitignore
@@ -0,0 +1,23 @@
1
+# Allowlisting gitignore template for GO projects prevents us
2
+# from adding various unwanted local files, such as generated
3
+# files, developer configurations or IDE-specific files etc.
4
+#
5
+# Recommended: Go.AllowList.gitignore
6
+
7
+# Ignore everything
8
+*
9
10
+# But not these files...
11
+!/.gitignore
12
13
+!*.go
14
+!go.sum
15
+!go.mod
16
17
+!README.md
18
+!LICENSE
19
20
+# !Makefile
21
22
+# ...even if they are in subdirectories
23
+!*/
0 commit comments