summaryrefslogtreecommitdiff
path: root/.gitattributes
blob: 30a783f26ce10bdb7f88df58d36a727be542efd7 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# auto for anything unspecified
* text=auto

# sources
*.c      text eol=lf
*.cc     text eol=lf
*.cxx    text eol=lf
*.cpp    text eol=lf
*.c++    text eol=lf
*.hpp    text eol=lf
*.h      text eol=lf
*.h++    text eol=lf
*.hh     text eol=lf
*.bat    text eol=crlf
*.cmd    text eol=crlf
*.coffee text eol=lf
*.css    text eol=lf
*.htm    text eol=lf
*.html   text eol=lf
*.inc    text eol=lf
*.ini    text eol=crlf
*.js     text eol=lf
*.jsx    text eol=lf
*.json   text eol=lf
*.less   text eol=lf
*.php    text eol=lf
*.pl     text eol=lf
*.py     text eol=lf
*.rb     text eol=lf
*.sass   text eol=lf
*.scm    text eol=lf
*.scss   text eol=lf
*.sh     text eol=lf
*.sql    text eol=lf
*.styl   text eol=lf
*.ts     text eol=lf
*.xml    text eol=lf
*.xhtml  text eol=lf

# make files (need to always use lf for compatibility with Windows 10 bash)
Makefile eol=lf
*.mk     eol=lf

# make files (need to always use lf for compatibility with Windows 10 bash)
*.sh eol=lf

# documentation
*.markdown   text eol=lf
*.md         text eol=lf
*.mdwn       text eol=lf
*.mdown      text eol=lf
*.mkd        text eol=lf
*.mkdn       text eol=lf
*.mdtxt      text eol=lf
*.mdtext     text eol=lf
*.txt        text eol=lf
AUTHORS      text eol=lf
CHANGELOG    text eol=lf
CHANGES      text eol=lf
CONTRIBUTING text eol=lf
COPYING      text eol=lf
INSTALL      text eol=lf
license      text eol=lf
LICENSE      text eol=lf
NEWS         text eol=lf
readme       text eol=lf
*README*     text eol=lf
TODO         text eol=lf

GRAPHICS
*.ai   binary
*.bmp  binary
*.eps  binary
*.gif  binary
*.ico  binary
*.jng  binary
*.jp2  binary
*.jpg  binary
*.jpeg binary
*.jpx  binary
*.jxr  binary
*.pdf  binary
*.png  binary
*.psb  binary
*.psd  binary
*.svg  text eol=lf
*.svgz binary
*.tif  binary
*.tiff binary
*.wbmp binary
*.webp binary

# hex files
*.hex binary
*.eep binary
nix/sources.nix linguist-generated=true