Skip to content

Commit

Permalink
add gitignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
tgvashworth committed Aug 11, 2022
1 parent 93a6964 commit 6f482a7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!*/assets
26 changes: 26 additions & 0 deletions Go.AllowList.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@



# 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
!*/

0 comments on commit 6f482a7

Please sign in to comment.