-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
38 lines (31 loc) · 1.14 KB
/
.gitattributes
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
38
# Auto-detect text files
* text=auto eol=lf
# Whitespace exclusions
*.txt whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
*.md whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
*.cs whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=4
*.json whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
*.yml whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
# Treat these as text files with linefeed endings
*.txt text eol=lf
*.md text eol=lf
*.cs text eol=lf
*.json text eol=lf
*.yml text eol=lf
# Binary files
*.jpg binary
*.png binary
# Don't count these files in statistics on GitHub
package-lock.json linguist-vendored
yarn.lock linguist-vendored
# Merge our versions of files when merge conflicts arise
package-lock.json merge=ours
yarn.lock merge=ours
# Don't even try to merge these files
package-lock.json -diff
yarn.lock -diff
# Exclude these files from the git archive export (.zip)
.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
**/*.user export-ignore