Browse Source

Merge pull request #3912 from kuritka/go-allow-list-community

Adding AllowList for Go
pull/3856/head^2
Brian Douglas 2 years ago
parent
commit
cb80974b9f
No account linked to committer's email address
1 changed files with 23 additions and 0 deletions
  1. 23
    0
      community/Golang/Go.AllowList.gitignore

+ 23
- 0
community/Golang/Go.AllowList.gitignore View File

@@ -0,0 +1,23 @@
# Allowlisting gitignore template for GO projects prevents us
# from adding various unwanted local files, such as generated
# files, developer configurations or IDE-specific files etc.
#
# Recommended: Go.AllowList.gitignore

# Ignore everything
*

# But not these files...
!/.gitignore

!*.go
!go.sum
!go.mod

!README.md
!LICENSE

# !Makefile

# ...even if they are in subdirectories
!*/

Loading…
Cancel
Save