-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
147 lines (132 loc) · 4.18 KB
/
.gitattributes
File metadata and controls
147 lines (132 loc) · 4.18 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# ============================================================================
# WebCodeFTP - Git Attributes
# ============================================================================
# Auto detect text files and perform LF normalization
* text=auto
# ============================================================================
# SOURCE CODE
# ============================================================================
*.php text eol=lf diff=php
*.js text eol=lf
*.ts text eol=lf
*.jsx text eol=lf
*.tsx text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.less text eol=lf
# ============================================================================
# TEMPLATES / MARKUP
# ============================================================================
*.html text eol=lf
*.htm text eol=lf
*.xml text eol=lf
*.svg text eol=lf
# ============================================================================
# CONFIGURATION / DATA
# ============================================================================
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.conf text eol=lf
*.config text eol=lf
.htaccess text eol=lf
.editorconfig text eol=lf
# ============================================================================
# DOCUMENTATION
# ============================================================================
*.md text eol=lf
*.txt text eol=lf
*.rst text eol=lf
LICENSE text eol=lf
README text eol=lf
CHANGELOG text eol=lf
CONTRIBUTING text eol=lf
# ============================================================================
# SCRIPTS
# ============================================================================
*.sh text eol=lf
*.bash text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# ============================================================================
# IMAGES
# ============================================================================
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.svg text
*.bmp binary
*.tiff binary
# ============================================================================
# FONTS
# ============================================================================
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# ============================================================================
# ARCHIVES
# ============================================================================
*.zip binary
*.tar binary
*.gz binary
*.bz2 binary
*.7z binary
*.rar binary
# ============================================================================
# DOCUMENTS
# ============================================================================
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
# ============================================================================
# MEDIA
# ============================================================================
*.mp4 binary
*.mov binary
*.avi binary
*.mp3 binary
*.wav binary
*.ogg binary
# ============================================================================
# COMPOSER
# ============================================================================
composer.json text eol=lf
composer.lock text eol=lf linguist-generated=true
# ============================================================================
# GIT
# ============================================================================
.gitattributes text eol=lf
.gitignore text eol=lf
.gitkeep text eol=lf
# ============================================================================
# GITHUB
# ============================================================================
.github/**/* text eol=lf
# ============================================================================
# EXPORT IGNORE (files not included in git archive)
# ============================================================================
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore
.editorconfig export-ignore
.php-cs-fixer.dist.php export-ignore
phpunit.xml export-ignore
tests/ export-ignore
.vscode/ export-ignore
.idea/ export-ignore
CONTRIBUTING.md export-ignore
CODE_OF_CONDUCT.md export-ignore
CLAUDE.md export-ignore