-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
99 lines (78 loc) · 2.54 KB
/
.gitattributes
File metadata and controls
99 lines (78 loc) · 2.54 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
# IACT DevBox - Git Attributes
# Controls line endings and file handling
# Version: 1.0.0
# ===================================================================
# AUTO-DETECT
# ===================================================================
# Auto-detect text files and normalize line endings to LF
* text=auto
# ===================================================================
# BASH SCRIPTS (Always LF)
# ===================================================================
*.sh text eol=lf
utils/*.sh text eol=lf
provisioners/**/*.sh text eol=lf
scripts/*.sh text eol=lf
# ===================================================================
# POWERSHELL SCRIPTS (CRLF for Windows compatibility)
# ===================================================================
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
# ===================================================================
# CONFIGURATION FILES (LF)
# ===================================================================
*.conf text eol=lf
*.cnf text eol=lf
*.cfg text eol=lf
*.ini text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Vagrantfile
Vagrantfile text eol=lf
# ===================================================================
# DOCUMENTATION (LF)
# ===================================================================
*.md text eol=lf
*.txt text eol=lf
*.log text eol=lf
# ===================================================================
# SOURCE CODE (LF)
# ===================================================================
*.py text eol=lf
*.js text eol=lf
*.json text eol=lf
*.html text eol=lf
*.css text eol=lf
*.sql text eol=lf
*.php text eol=lf
# ===================================================================
# BINARY FILES (No conversion)
# ===================================================================
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.tar.gz binary
*.tgz binary
*.box binary
# ===================================================================
# GIT SPECIFIC
# ===================================================================
.gitignore text eol=lf
.gitattributes text eol=lf
.gitkeep text eol=lf
# ===================================================================
# SPECIAL HANDLING
# ===================================================================
# Treat Vagrantfile as Ruby
Vagrantfile linguist-language=Ruby
# Don't include test files in language stats
test/** linguist-vendored
tests/** linguist-vendored
# Mark generated files
logs/** linguist-generated
*.backup.* linguist-generated