-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
48 lines (39 loc) · 936 Bytes
/
.gitattributes
File metadata and controls
48 lines (39 loc) · 936 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
# Git Attributes for Shellockolm
# Ensures certain file types are never tracked or compared
# Line endings - CRITICAL for cross-platform scripts
* text=auto
# Shell scripts MUST have LF (Unix) line endings
*.sh text eol=lf
# Windows scripts can have CRLF
*.bat text eol=crlf
*.ps1 text eol=crlf
# Never track these files (security-sensitive)
*_report*.json filter=lfs diff=lfs merge=lfs -text
*_scan*.json filter=lfs diff=lfs merge=lfs -text
*.key binary
*.token binary
.secrets binary
.env.* binary
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
# Archives
*.zip binary
*.tar.gz binary
*.7z binary
# Database files
*.db binary
*.sqlite binary
*.sqlite3 binary
# Mark certain files as generated (not for review)
*_report*.* linguist-generated=true
*_scan*.* linguist-generated=true
*.backup linguist-generated=true
# Export files as binary
*.csv binary
*.xlsx binary
*.xls binary