Files
ParaWiki/cimery/.gitattributes
minsung 2361f318d4 cimery 루트 README + .gitattributes (LF/CRLF 경고 제거)
## .gitattributes
- * text=auto eol=lf → Rust 소스·설정파일 LF 통일.
- .png/.jpg/.ico/.usd binary 마킹.
- .bat/.cmd/.ps1 Windows 스크립트는 CRLF 유지.
- 매 커밋마다 뜨던 "LF will be replaced by CRLF" 경고 해소.

## cimery/README.md 신설
- Sprint 39 현재 상태 요약표 (기하/부재/UI/저장/IFC/배포/증분/테스트).
- 빌드 & 실행 예시 (check/test/run/tauri build/insta update).
- 크레이트 구조 트리 (11 crates) + 의존 방향.
- 참조 문서 링크 (dev-guide·ADR·ParaWiki·PROGRESS·PLAN).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 08:44:30 +09:00

20 lines
364 B
Plaintext

# cimery — Git 속성
#
# Windows ↔ Unix LF/CRLF 경고 방지. Rust 소스는 LF 유지.
* text=auto eol=lf
# 이진 파일: 줄바꿈 변환 금지.
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
*.usda binary
*.usd binary
*.ifc text eol=lf
# Windows 전용 스크립트는 CRLF 필요.
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf