-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
22 lines (22 loc) · 966 Bytes
/
Copy path.gitattributes
File metadata and controls
22 lines (22 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 훅 스크립트는 반드시 LF로 유지한다. CRLF면 sh가 깨진다(bad interpreter / \r).
.gitattributes text eol=lf
.githooks/commit-msg text eol=lf
.githooks/pre-commit text eol=lf
.githooks/pre-push text eol=lf
.githooks/reference-transaction text eol=lf
*.sh text eol=lf
# 소스/문서는 LF로 정규화(크로스플랫폼 일관성).
*.js text eol=lf
*.mjs text eol=lf
*.md text eol=lf
*.json text eol=lf
*.html text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.py text eol=lf
# 재현 빌드 입력은 원본 문맥 공백과 정확한 바이트 해시를 보존한다.
scripts/wasmToolBuilder/patches/*.patch text eol=lf -whitespace
src/runtime/tools/owned/LICENSE.* text eol=lf -whitespace
# 네이티브 엔진 잠금은 원본 바이트 해시를 검증하므로 빌드 입력도 LF로 고정한다.
*.c text eol=lf
scripts/engineBuilder/Setup*.local text eol=lf