mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-01-24 10:33:28 +08:00
33 lines
306 B
Plaintext
33 lines
306 B
Plaintext
# Ignore all
|
|
*
|
|
|
|
# Unignore all with extensions
|
|
!*.*
|
|
!**/Dockerfile
|
|
!**/Makefile
|
|
|
|
# Unignore all dirs
|
|
!*/
|
|
!api
|
|
|
|
# ignore
|
|
**/.idea
|
|
**/.vscode
|
|
**/.DS_Store
|
|
**/logs
|
|
**/adhoc
|
|
**/coverage.txt
|
|
**/WARP.md
|
|
|
|
# for test purpose
|
|
go.work
|
|
go.work.sum
|
|
|
|
# gitlab ci
|
|
.cache
|
|
.golangci.yml
|
|
|
|
# vim auto backup file
|
|
*~
|
|
!OWNERS
|