32 lines
531 B
Plaintext
32 lines
531 B
Plaintext
# 文本文件统一使用 LF 换行符
|
|
* text=auto eol=lf
|
|
|
|
# Go 源代码文件
|
|
*.go text eol=lf
|
|
go.mod text eol=lf
|
|
go.sum text eol=lf
|
|
|
|
# 文档文件
|
|
*.md text eol=lf
|
|
*.txt text eol=lf
|
|
README* text eol=lf
|
|
|
|
# Git 配置文件
|
|
.gitignore text eol=lf
|
|
.gitattributes text eol=lf
|
|
|
|
# 数据库文件(二进制)
|
|
*.db binary
|
|
*.database binary
|
|
|
|
# Go 编译产物(二进制)
|
|
*.exe binary
|
|
*.dll binary
|
|
*.so binary
|
|
*.dylib binary
|
|
|
|
# 语言检测
|
|
*.go linguist-language=Go
|
|
*.md linguist-documentation
|
|
examples/ linguist-documentation
|