-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
49 lines (39 loc) · 816 Bytes
/
.gitattributes
File metadata and controls
49 lines (39 loc) · 816 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
41
42
43
44
45
46
47
48
49
# Ensure consistent line endings
* text=auto
# PHP files - enforce LF
*.php text eol=lf
# Shell scripts
*.sh text eol=lf
# Configuration files
*.env text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.xml text eol=lf
*.md text eol=lf
# Exclude exported vendors from diff
/vendor/* linguist-vendored
# Binary files
*.jpg binary
*.jpeg binary
*.png binary
*.gif binary
*.ico binary
*.pdf binary
# Prevent diff for compiled files
*.min.js -diff
*.min.css -diff
*.lock -diff
*.zip -diff
*.tar.gz -diff
# License file - always LF
LICENSE text eol=lf
LICENSE.md text eol=lf
# Ignore vendor folder diff
/vendor/ export-ignore
# Composer lock - normalize line endings
composer.lock text eol=lf
/node_modules/ export-ignore
.git/ export-ignore
.github/ export-ignore
.phpunit.cache/ export-ignore