-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
92 lines (80 loc) · 2.58 KB
/
.gitattributes
File metadata and controls
92 lines (80 loc) · 2.58 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
# ====================================================
# NEXUS PROTOCOL: GLOBAL ATTRIBUTES (v1.4.0)
# ====================================================
# Phase 1.4.0: Sovereign Edge Node Standard
# Goal: Ensure cross-platform logic consistency
# ====================================================
# --------------------------------------------------
# 1. Global Normalization
# --------------------------------------------------
* text=auto eol=lf
# --------------------------------------------------
# 2. Python (The Brain)
# --------------------------------------------------
*.py text eol=lf
requirements.txt text eol=lf
*.ini text eol=lf
# Option A: Protect Environment Blueprints from Merge Corruption
*.env.example text eol=lf -merge
# --------------------------------------------------
# 3. Dart / Flutter (The Body)
# --------------------------------------------------
*.dart text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.js text eol=lf
*.lock -text
*.wasm binary
# --------------------------------------------------
# 4. Shell & Automation (OS Specific)
# --------------------------------------------------
*.sh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
# Option B: Docker Invariant Protection (Container Readiness)
Dockerfile text eol=lf
*.Dockerfile text eol=lf
# --------------------------------------------------
# 5. Markdown / Documentation
# --------------------------------------------------
*.md text eol=lf
*.html text eol=lf
LICENSE text eol=lf
# --------------------------------------------------
# 6. Database & Binary (Merge-Protected)
# --------------------------------------------------
# Protected Sovereign Vault - Git must never attempt to merge .db files
*.db binary -merge
*.db-wal binary -merge
*.db-shm binary -merge
*.sqlite binary -merge
*.sqlite3 binary -merge
# --------------------------------------------------
# 7. Images & Assets
# --------------------------------------------------
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
*.svg text eol=lf
# --------------------------------------------------
# 8. Executables & System Binaries
# --------------------------------------------------
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# --------------------------------------------------
# 9. Hardware Adapters (C / C++)
# --------------------------------------------------
*.c text eol=lf
*.cc text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.cmake text eol=lf
# --------------------------------------------------
# 10. Generated Artifacts
# --------------------------------------------------
client/**/generated_* -text
pubspec.lock -text