-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
49 lines (45 loc) · 978 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
41
42
43
44
45
46
47
48
49
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
# Auto detect text files and perform LF normalization
* text eol=lf
# (binary is a macro for -text -diff)
*.br binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.gz binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.pyc binary
*.pdf binary
# Ignore hidden files & directories
/.editorconfig export-ignore
/.eslintrc export-ignore
/.eslintignore export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.gitlab-ci.yml export-ignore
/.idea export-ignore
/.stylelintrc.json export-ignore
# Ignore directories
/.githook export-ignore
/node_modules export-ignore
/vendor export-ignore
# Ignore files
/gulpfile.js export-ignore
/package.json export-ignore
/package-lock.json export-ignore
/README.adoc export-ignore