DMF_Crawler/.gitattributes
Yun Chan 56a6e2da93 chore: 저장소 구조 정리 및 문서화, 첫 커밋
- src/dist 산출물 분리 원칙 정리(.gitignore, .gitattributes)
- 루트 및 주요 폴더(config/scripts/prompts/tests/src, 런타임 폴더 5종)에
  안내용 README.md 추가
- CHANGELOG.md, LICENSE, docs/ops/05-release-and-versioning.md 추가
- docs/README.md 문서 지도 갱신
2026-09-04 09:25:44 +09:00

20 lines
741 B
Text

# =============================================================================
# .gitattributes — 줄바꿈·바이너리 처리 규칙
# =============================================================================
# Windows 전용 프로젝트다. 텍스트는 기본 LF로 정규화하되, Windows 네이티브
# 스크립트(.ps1/.cmd/.bat)는 CRLF를 유지한다. .ps1은 UTF-8 with BOM이어야
# PowerShell 5.1이 한글을 깨뜨리지 않는다(AGENTS.md §6) — 이 파일은 줄바꿈만
# 다루고 인코딩/BOM은 편집기 설정으로 지킨다.
* text=auto eol=lf
*.ps1 text eol=crlf
*.cmd text eol=crlf
*.bat text eol=crlf
*.xlsx binary
*.sqlite3 binary
*.png binary
*.bmp binary
*.ico binary
*.whl binary