-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
58 lines (55 loc) · 1.07 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Git attributes
#
# See
# - git help attributes
# - https://git-scm.com/docs/gitattributes
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Pure text files: Use LF in repo and checkout
*.c text eol=lf
*.cfg text eol=lf
*.cls text eol=lf
*.crd text eol=lf
*.dtx text eol=lf
*.in text eol=lf
*.ini text eol=lf
*.ins text eol=lf
*.lay text eol=lf
*.ldf text eol=lf
*.ly text eol=lf
*.md text eol=lf
*.proto text eol=lf
*.puml text eol=lf
*.py text eol=lf
*.rs text eol=lf
*.rst text eol=lf
*.sh text eol=lf
*.sng text eol=lf
*.sty text eol=lf
*.tex text eol=lf
*.txt text eol=lf
*.typed text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
.pylintrc text eol=lf
COPYING* text eol=lf
ChangeLog text eol=lf
Jenkinsfile* text eol=lf
LICENCE* text eol=lf
Pipfile* text eol=lf
README* text eol=lf
pylintrc text eol=lf
.pylintrc text eol=lf
# Binary/DOS files: Don't treat as text
*.bat -text
*.eps -text
*.exe -text
*.inv -text
*.jpg -text
*.pdf -text
*.png -text
*.svg -text
*.xcf -text