forked from GreedyBear-Project/GreedyBear
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
67 lines (52 loc) · 1.61 KB
/
.gitattributes
File metadata and controls
67 lines (52 loc) · 1.61 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
# =============================================================================
# Git Attributes Configuration for GreedyBear
# Ensures consistent line endings across all platforms
# =============================================================================
# Default behavior: Auto-detect text files and normalize to LF
* text=auto eol=lf
# -----------------------------------------------------------------------------
# Text files (normalize to LF)
# -----------------------------------------------------------------------------
# Python
*.py text eol=lf
# JavaScript/React
*.js text eol=lf
*.jsx text eol=lf
*.mjs text eol=lf
*.cjs text eol=lf
# Styles
*.css text eol=lf
*.scss text eol=lf
# Web
*.html text eol=lf
# Config files
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.conf text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
# Shell scripts
*.sh text eol=lf
# Docker
Dockerfile text eol=lf
Dockerfile_nginx text eol=lf
# Git
.gitignore text eol=lf
.gitattributes text eol=lf
# -----------------------------------------------------------------------------
# Binary files (do not normalize)
# -----------------------------------------------------------------------------
# Images
*.png binary
*.ico binary
# -----------------------------------------------------------------------------
# Linguist overrides (GitHub language statistics)
# -----------------------------------------------------------------------------
# Exclude from language statistics
*.min.js linguist-vendored
*.min.css linguist-vendored
**/migrations/* linguist-generated
package-lock.json linguist-generated