forked from craftyjs/Crafty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
40 lines (31 loc) · 845 Bytes
/
.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
# Let git detect text files that are not listed below and let it normalize them
# - convert line endings from LF to CRLF on checkout in Windows
# - convert line endings from CRLF to LF on commit in Windows
# - don't touch line endings in Linux / Mac
* text=auto
# Explicitly tell git which text files will be normalized
# web languages
*.js text
*.jsx text
*.json text
*.coffee text
*.html text
*.css text
# config files
*.gitignore text
*.gitattributes text
*.yml text
*.editorconfig text
*.npmignore text
*.jshintrc text
*.jshintignore text
# misc
*.md text
*.sh text
*.frag text
*.vert text
# Explicitly tell git which binary files won't be normalized
*.png binary
*.jpg binary
*.jpeg binary
*.wav binary