forked from misiektoja/instagram_monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (24 loc) · 765 Bytes
/
Copy path.gitattributes
File metadata and controls
27 lines (24 loc) · 765 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
# 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
*.html text diff=html
*.yml text
*.yaml text
*.toml text
*.cff text
*.json text
*.txt text
*.in text
*.tape text
Dockerfile text
LICENSE text
# Screenshots and the demo recording must never be normalized or diffed as text
*.png binary
*.jpg binary
*.jpeg 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.