This repository has been archived by the owner on Mar 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
124 lines (97 loc) · 1.56 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
# Ignore all differences in line endings
* -crlf
#
# The above will handle all files NOT found below
#
#
## These files are text and should be normalized (Convert crlf => lf)
#
* text eol=lf
# "source" code
*.txt text
*.css text
*.sass text
*.scss text
*.min.js binary
*.js text
*.coffee text
*.json text
*.htm text
*.html text
*.xml text
*.svg text
*.rb text
*.py text
*.pxd text
*.py3 text
*.pyw text
*.pyx text
*.sql text
*.sh text
*.bat text
# data
*.csv text
*.tab text
*.tsv text
*.bib text
*.cls text
# git config
.gitattributes text
.gitignore text
.gitconfig text
# code analysis config
.jshintrc text
.jscsrc text
.jshintignore text
.csslintrc text
# misc config
*.yaml text
*.yml text
# build config
*.npmignore text
# Documentation
*.md text
LICENSE text
AUTHORS text
#
## These files are binary and should be left untouched
#
# (binary is a macro for -text -diff)
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
# audio/video
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
# fonts
*.ttf binary
*.eot binary
*.woff binary
# Note: .db, .p, and .pkl files are associated
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).
*.db binary
*.p binary
*.pkl binary
*.pyc binary
*.pyd binary
*.pyo binary
# others
*.gz binary
*.zip binary
*.7z binary
*.bz2 binary
*.pdf binary
*.xlsm binary
*.xls binary