forked from highfidelity-worklist/worklist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (34 loc) · 798 Bytes
/
Copy path.gitattributes
File metadata and controls
40 lines (34 loc) · 798 Bytes
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
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.pdf binary
# eol
* text=auto
# never replace line endings on 3rd party code
js/bootstrap/* -lf
js/jquery/* -lf
js/dragdealer/* -lf
css/bootstrap/* -lf
css/chosen/* -lf
css/font-awesome/* -lf
css/jquery/* -lf
# let's exclude the tmp and uploads as well
tmp/* -lf
uploads/* -lf
# convert tabs to 4 spaces
*.php filter=tabspace
*.html filter=tabspace
*.mustache filter=tabspace
# Do Not convert tabs on 3rd party code
js/bootstrap/* -tabspace
js/jquery/* -tabspace
js/dragdealer/* -tabspace
css/bootstrap/* -tabspace
css/chosen/* -tabspace
css/font-awesome/* -tabspace
css/jquery/* -tabspace
# let's exclude the tmp and uploads as well
tmp/* -tabspace
uploads/* -tabspace