-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
20 lines (18 loc) · 1005 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Auto-detect text files, ensure they use LF.
* text=auto eol=lf
# These files are always considered text and should use LF.
# See core.whitespace @ https://git-scm.com/docs/git-config for whitespace flags.
*.cs text eol=lf whitespace=blank-at-eol,space-before-tab,tab-in-indent,tabwidth=2
*.ts text eol=lf whitespace=blank-at-eol,space-before-tab,tab-in-indent,tabwidth=2
*.js text eol=lf whitespace=blank-at-eol,space-before-tab,tab-in-indent,tabwidth=2
*.json text eol=lf whitespace=blank-at-eol,space-before-tab,tab-in-indent,tabwidth=2
*.sh text eol=lf whitespace=blank-at-eol diff=bash
*.md text eol=lf whitespace=blank-at-eol diff=markdown
*.rst text eol=lf whitespace=blank-at-eol
*.cfg text eol=lf whitespace=blank-at-eol
*.toml text eol=lf whitespace=blank-at-eol,space-before-tab,tab-in-indent,tabwidth=2
# Exclude non-essential files from dist
.gitattributes export-ignore
.gitignore export-ignore
tests/ export-ignore
.github export-ignore