-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
37 lines (36 loc) · 789 Bytes
/
.gitattributes
File metadata and controls
37 lines (36 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Auto-detect text files and normalise line endings to LF.
* text=auto eol=lf
# Go sources
*.go text eol=lf diff=golang
# Config / data
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.toml text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
# Scripts
*.sh text eol=lf
# Go module files
go.mod text eol=lf
go.sum text eol=lf
# CI / tooling
Taskfile.yaml text eol=lf
Dockerfile text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
.golangci.yml text eol=lf
.licenserc.yaml text eol=lf
LICENSE text eol=lf
# Binaries — no diff, no merge, no text conversion
*.db binary
*.exe binary
*.wasm binary
*.png binary
*.jpg binary
*.gif binary
*.ico binary
# Go workspace (local only, but normalize if committed by accident)
go.work text eol=lf
go.work.sum text eol=lf