forked from cloudposse/atmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
31 lines (26 loc) 路 1.02 KB
/
Copy path.gitattributes
File metadata and controls
31 lines (26 loc) 路 1.02 KB
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
# Always check-out / check-in files with LF line endings.
* text=auto eol=lf
docs/** linguist-documentation
website/** linguist-documentation
# Asciinema casts are line-delimited JSON terminal recordings, regenerated by
# the `atmos casts generate` commands in demo/casts. Keep them reviewable as
# text locally (with
# whitespace damage visible), pin LF so Windows checkouts never mangle them,
# and mark them generated so GitHub collapses their diffs in PR review.
*.cast text eol=lf diff whitespace linguist-generated=true
# 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