-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.gitattributes
More file actions
47 lines (42 loc) · 985 Bytes
/
Copy path.gitattributes
File metadata and controls
47 lines (42 loc) · 985 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
# Default: normalize line endings to LF on commit
* text=auto eol=lf
# Windows-only scripts keep CRLF
*.ps1 text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.cmd text eol=crlf
*.bat text eol=crlf
# Source
*.cs text diff=csharp
*.csproj text
*.sln text eol=crlf
*.json text
*.jsonc text
*.yml text
*.yaml text
*.md text
*.html text
*.css text
*.js text
*.ts text
*.vue text
# Binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text
*.pdf binary
*.mp4 binary
*.zip binary
*.parquet binary
*.xlsx binary
# Lockfiles — generated, hide from PR diffs
package-lock.json linguist-generated=true
*.lock linguist-generated=true
# Squad: union merge for append-only team state files
.squad/decisions.md merge=union
.squad/agents/*/history.md merge=union
.squad/log/** merge=union
.squad/orchestration-log/** merge=union