-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
.gitattributes
39 lines (32 loc) · 1.13 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
39
# 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
*.js whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
*.ts whitespace=-blank-at-eof,-space-before-tab,-tab-in-indent,trailing-space,tabwidth=2
*.json 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
*.js text eol=lf
*.jsx text eol=lf
*.ts text eol=lf
*.json text eol=lf
*.sh text eol=lf
# Binary files
*.gif binary
*.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