-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
114 lines (97 loc) · 1.95 KB
/
.gitattributes
File metadata and controls
114 lines (97 loc) · 1.95 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
# Git attributes for IsotoneStack
# Ensures consistent line endings across different platforms
# Default behavior - auto line ending conversion
* text=auto
# Source code files - always use LF
*.php text eol=lf
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.json text eol=lf
*.xml text eol=lf
*.svg text eol=lf
*.py text eol=lf
# Configuration files - always use LF
*.conf text eol=lf
*.ini text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.toml text eol=lf
.htaccess text eol=lf
.env text eol=lf
# Shell scripts - always use LF
*.sh text eol=lf
*.bash text eol=lf
# Windows scripts - always use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Documentation - always use LF
*.md text eol=lf
*.txt text eol=lf
README text eol=lf
LICENSE text eol=lf
CHANGELOG text eol=lf
# SQL files - always use LF
*.sql text eol=lf
# Git files
.gitignore text eol=lf
.gitattributes text eol=lf
# Binary files - no line ending conversion
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.jar binary
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.rar binary
# Images
*.jpg binary
*.jpeg binary
*.png binary
*.gif binary
*.ico binary
*.bmp binary
*.webp binary
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
# Database files
*.db binary
*.sqlite binary
*.sqlite3 binary
# Certificates
*.key binary
*.crt binary
*.pem binary
*.pfx binary
# Diff settings for better readability
*.php diff=php
*.html diff=html
*.css diff=css
*.py diff=python
# Export ignore - files not needed in archive downloads
.gitignore export-ignore
.gitattributes export-ignore
.github/ export-ignore
tests/ export-ignore
docs/ export-ignore
*.md export-ignore
# Linguist settings - help GitHub identify the project correctly
*.conf linguist-detectable=true
*.ini linguist-detectable=true
*.ps1 linguist-detectable=true
docs/* linguist-documentation
config/* linguist-vendored=false