forked from misiektoja/spotify_monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
24 lines (21 loc) · 694 Bytes
/
Copy path.gitattributes
File metadata and controls
24 lines (21 loc) · 694 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
# Git stores and checks out LF everywhere, which is the line ending .editorconfig declares.
# This keeps Windows contributors from committing CRLF into a repository that is LF only.
* text=auto eol=lf
# Types Git cannot always infer, so diffs and merges stay textual
*.py text diff=python
*.md text diff=markdown
*.yml text
*.yaml text
*.toml text
*.cff text
*.json text
*.txt text
*.in text
Dockerfile text
LICENSE text
# Screenshots must never be normalized or diffed as text
*.png binary
*.jpg binary
*.gif binary
# Nothing is marked export-ignore on purpose: the source archives attached to a release
# carry the complete repository, including tests, documentation and CI configuration.