-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
54 lines (49 loc) · 1.23 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
# Automatically normalize line endings for all text-based files
# http://git-scm.com/docs/gitattributes#_end_of_line_conversion
# Set the default behavior, in case people don't have `core.autocrlf` set.
* text=auto
# For the following file types, normalize line endings to LF on
# checkin and prevent conversion to CRLF when they are checked out
# (this is required in order to prevent newline related issues like,
# for example, after the build script is run)
.* text eol=lf
*.css text eol=lf
*.html text eol=lf
*.js text eol=lf
*.json text eol=lf
*.scss text eol=lf
*.md text eol=lf
*.rs text eol=lf
*.sh text eol=lf
*.toml text eol=lf
*.txt text eol=lf
*.xml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.php text eol=lf
# Windows bat files in mobile/android.
*.bat -text
# Denote all files that are truly binary and should not be modified.
*.aar binary
*.gif binary
*.jar binary
*.jpg binary
*.jpeg binary
*.png binary
*.ttf binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.zip binary
*.7z binary
*.pyc binary
# Ignore Git Commands
package-lock.json -diff
composer.lock -diff
dist/** -diff
admin-core/**/build/*.css -diff
admin-core/**/build/*.js -diff
assets/css/blocks/** -diff
assets/css/custom-style-blocks.css -diff