.gitignore 313 B

12345678910111213141516171819202122232425262728293031323334
  1. # Ignore all
  2. *
  3. # Unignore all with extensions
  4. !*.*
  5. !**/Dockerfile
  6. !**/Makefile
  7. !LICENSE
  8. !NOTICE
  9. # Unignore all dirs
  10. !*/
  11. !api
  12. # ignore
  13. **/.idea
  14. **/.vscode
  15. **/.DS_Store
  16. **/logs
  17. **/adhoc
  18. **/coverage.txt
  19. # for test purpose
  20. go.work
  21. go.work.sum
  22. # gitlab ci
  23. .cache
  24. .golangci.yml
  25. # vim auto backup file
  26. *~
  27. !OWNERS