16 lines
594 B
Text
16 lines
594 B
Text
# calog is a Linux, ASCII-only, LF project: normalize every text file to LF so the
|
|
# repo is byte-stable regardless of the contributor's platform.
|
|
* text=auto eol=lf
|
|
|
|
# Explicit text types (predictable line-ending and diff handling).
|
|
*.c text
|
|
*.h text
|
|
*.cpp text
|
|
*.md text
|
|
Makefile text
|
|
.gitignore text
|
|
|
|
# Vendored third-party engine sources (Lua, my-basic, Squirrel, Duktape). Mark them
|
|
# vendored so GitHub excludes them from language statistics and collapses them in
|
|
# diffs/reviews -- they are upstream code, not part of calog proper.
|
|
vendor/** linguist-vendored
|