-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitattributes
54 lines (45 loc) · 1.36 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
# default: self-detect the content type (text vs. binary)
* text=auto
# enforce content type "text" to fix mixed line-endings in the repo
*.conf text
*.cpp text
*.css text
*.dtd text
*.h text
*.htm text
*.html text
*.ini text
*.js text
*.json text
*.md text
*.mq4 text
*.mq5 text
*.mqh text
*.mql text
*.php text
*.phtml text
*.properties text
*.sh text
*.sql text
*.txt text
*.xml text
*.yml text
# set content encodings
* encoding=UTF-8
/mql4/ encoding=CP1252
/mql5/ encoding=CP1251
*.md encoding=UTF-8
# checkout with Windows line-endings (not yet supported by EGit)
*.dsp text eol=crlf
*.dsw text eol=crlf
*.tpl text eol=crlf
*.vcproj* text eol=crlf
*.vcxproj* text eol=crlf
hotkeys.ini text eol=crlf
# Gitgub Linguist overrides
etc/windows/** linguist-detectable=false
mql4/files/** linguist-detectable=false
profiles/** linguist-detectable=false
sounds/** linguist-detectable=false
templates/** linguist-detectable=false
*.mqh linguist-language=MQL4