-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (22 loc) · 810 Bytes
/
Copy path.gitattributes
File metadata and controls
27 lines (22 loc) · 810 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
# Always check-out / check-in files with LF line endings.
* text=auto eol=lf
docs/** linguist-documentation
website/** linguist-documentation
# Screengrabs are binary HTML files that are automatically generated
website/src/components/Screengrabs/**/*.html linguist-generated=true binary
# Golden snapshots should be treated a raw output to prevent line-ending conversions
tests/snapshots/**/*.golden linguist-generated=true -text
# Mark binary files to prevent normalization
*.png binary
*.svg binary
*.jpg binary
*.gif binary
*.pdf binary
*.ai binary
*.eps binary
*.ansi binary
*.mp4 binary
# Reduce merge conflicts that can occur when go.mod and go.sum files are updated
# Run `go mod tidy` to update the go.sum file
go.sum linguist-generated=true merge=union
go.mod linguist-generated=true merge=union