-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
29 lines (24 loc) · 1.21 KB
/
Copy path.gitattributes
File metadata and controls
29 lines (24 loc) · 1.21 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
# 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
# Squad: union merge for append-only team state files
.squad/rai/audit-trail.md merge=union
# Web source files: always LF (Vite/esbuild requires consistent line endings;
# CRLF in .tsx/.ts files causes Vite HMR to fail on Windows with autocrlf=true)
apps/web/**/*.ts text eol=lf
apps/web/**/*.tsx text eol=lf
apps/web/**/*.css text eol=lf
apps/web/**/*.json text eol=lf
apps/web/docker-entrypoint.sh text eol=lf
# Shell scripts: always LF (bash fails to parse CRLF line endings)
*.sh text eol=lf
# Extensionless sandbox helpers: they run under /bin/sh inside the Linux executor image, so a CRLF
# checkout on Windows would bake unparseable scripts into the container image.
apps/Agentweaver.AgentHost/sandbox/* text eol=lf
# Generated docs/templates: always LF so `node scripts/gen-docs.mjs` output is
# byte-stable across platforms and the API embedded copy matches the .github file.
docs/reference/mcp-tools.md text eol=lf
.github/agents/agentweaver.agent.md text eol=lf
apps/Agentweaver.Api/Projects/Templates/agentweaver.agent.md text eol=lf