- CHANGELOG.md: Phase 1~13 + 랜딩 페이지 전체 변경 이력 - LICENSE: MIT - CONTRIBUTING.md: 개발 환경, 코드 표준, PR 프로세스 - SECURITY.md: 보안 정책, 취약점 보고 절차 - .editorconfig: 에디터 설정 통일 (indent, charset, eol) - .nvmrc: Node.js 20 - .gitattributes: line ending 정규화, 바이너리 선언, linguist 설정 - .gitignore: site/dist, Python, Whisper 모델 등 누락 항목 추가
34 lines
530 B
Text
34 lines
530 B
Text
# Auto-detect text files and normalize line endings
|
|
* text=auto eol=lf
|
|
|
|
# Explicitly declare text files
|
|
*.ts text
|
|
*.tsx text
|
|
*.js text
|
|
*.jsx text
|
|
*.json text
|
|
*.css text
|
|
*.html text
|
|
*.md text
|
|
*.yml text
|
|
*.yaml text
|
|
|
|
# Declare binary files
|
|
*.ico binary
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.webp binary
|
|
*.wav binary
|
|
*.mp3 binary
|
|
*.exe binary
|
|
*.dll binary
|
|
*.whl binary
|
|
*.sqlite binary
|
|
*.db binary
|
|
|
|
# Linguist overrides
|
|
docs/** linguist-documentation
|
|
site/** linguist-documentation
|
|
tests/** linguist-detectable=false
|