You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Go.AllowList 389B

1234567891011121314151617181920212223
  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. # Ignore everything
  7. *
  8. # But not these files...
  9. !/.gitignore
  10. !*.go
  11. !go.sum
  12. !go.mod
  13. !README.md
  14. !LICENSE
  15. # !Makefile
  16. # ...even if they are in subdirectories
  17. !*/