d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
Web Frontend / Deploy to Cloudflare (push) Waiting to run
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
22 lines
915 B
Plaintext
22 lines
915 B
Plaintext
# Ensure LF line endings for files consumed by include_str!() on all platforms.
|
|
# include_str!() preserves raw bytes; CRLF breaks substring assertions and
|
|
# produces different compiled binaries on Windows vs Linux/macOS.
|
|
# Cover nested mode/approval/personality prompts — a top-level *.md glob alone
|
|
# left modes/*.md on CRLF under Windows autocrlf and blew the agent token budget.
|
|
crates/tui/src/prompts/**/*.md text eol=lf
|
|
crates/tui/src/prompts/*.md text eol=lf
|
|
crates/tui/src/prompts/*.txt text eol=lf
|
|
|
|
# Rustfmt writes LF; keep Rust sources stable across Windows/Linux/macOS.
|
|
*.rs text eol=lf
|
|
|
|
# Release shell scripts are invoked directly by bash on Windows
|
|
# checkouts; CRLF turns `set -euo pipefail` into an invalid option.
|
|
scripts/release/*.sh text eol=lf
|
|
|
|
# Keep repository attributes themselves stable on every platform.
|
|
.gitattributes text eol=lf
|
|
|
|
# Everything else auto-detects (default).
|
|
* text=auto
|