12345678910111213141516171819202122232425262728293031323334 |
- # Ignore all
- *
- # Unignore all with extensions
- !*.*
- !**/Dockerfile
- !**/Makefile
- !LICENSE
- !NOTICE
- # Unignore all dirs
- !*/
- !api
- # ignore
- **/.idea
- **/.vscode
- **/.DS_Store
- **/logs
- **/adhoc
- **/coverage.txt
- # for test purpose
- go.work
- go.work.sum
- # gitlab ci
- .cache
- .golangci.yml
- # vim auto backup file
- *~
- !OWNERS
|