mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-12-24 13:37:51 +08:00
29 lines
1017 B
Plaintext
29 lines
1017 B
Plaintext
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
|
|
# Collapse generated and vendored files on GitHub
|
|
AUTHORS linguist-generated merge=union
|
|
*.gen.* linguist-generated merge=ours
|
|
*.pb.go linguist-generated merge=ours
|
|
*.pb.gw.go linguist-generated merge=ours
|
|
go.sum linguist-generated merge=ours
|
|
go.mod linguist-generated
|
|
gen.sum linguist-generated merge=ours
|
|
vendor/* linguist-vendored
|
|
rules.mk linguist-vendored
|
|
*/vendor/* linguist-vendored
|
|
|
|
# doc
|
|
doc/* linguist-documentation
|
|
doc/Makefile linguist-documentation=false
|
|
|
|
# Reduce conflicts on markdown files
|
|
*.md merge=union
|
|
|
|
# A set of files you probably don't want in distribution
|
|
/.github export-ignore
|
|
/.githooks export-ignore
|
|
.gitattributes export-ignore
|
|
.gitignore export-ignore
|
|
.gitmodules export-ignore
|
|
/tool/lint export-ignore |