forked from concretecms/concretecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
59 lines (55 loc) · 1.15 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
# Try to autodetect as fallback
* text=auto
# Shorthand for text files with whitespace error config
[attr]normalizetext text eol=lf whitespace=trailing-space,tab-in-indent,tabwidth=4
#
# Text files
#
*.conf text
*.css normalizetext
*.json normalizetext
*.yml normalizetext
*.yaml normalizetext
*.scss normalizetext
*.sass normalizetext
*.less normalizetext
*.html normalizetext diff=html
*.js normalizetext
*.md normalizetext
*.php normalizetext diff=php
*.sql normalizetext
*.tpl normalizetext
*.txt normalizetext
*.xml normalizetext
*.svg text eol=lf
/concrete/bin/concrete5 text eol=lf
/concrete/bin/concrete5.bat text eol=crlf
/concrete/bin/concrete text eol=lf
/concrete/bin/concrete.bat text eol=crlf
#
# Binary files
#
*.bz2 binary
*.gif binary
*.ico binary
*.jar binary
*.jpeg binary
*.jpg binary
*.otf binary
*.png binary
*.tar.* binary
*.ttf binary
*.TTF binary
*.woff binary
#
# Exclude from archives created from the source code
#
/.* export-ignore
/build/ export-ignore
/tests/ export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md export-ignore
/INSTALL.md export-ignore
/phpunit.xml export-ignore
/README.md export-ignore
.gitignore export-ignore