選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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