forked from GaijinEntertainment/daScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
23 lines (20 loc) · 1012 Bytes
/
Copy path.gitattributes
File metadata and controls
23 lines (20 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# All files generated by standalone contexts are ignored in git statistic
src/das/**/*.cpp binary
src/das/**/*.h binary
utils/dasFormatter/ds_parser.cpp binary
utils/dasFormatter/ds_parser.output binary
daslib/_aot_generated/*.cpp binary
# Shell scripts must keep LF endings even when checked out under autocrlf=true.
*.sh text eol=lf
# Windows batch launchers must keep CRLF — cmd.exe mis-parses an LF-only .cmd
# (it runs each line's tail as a command). Force CRLF so an editor or a checkout
# under autocrlf=input can't silently break the daslang MCP vcvars launcher.
*.cmd text eol=crlf
*.bat text eol=crlf
# dasClangBind generated bindings: emit LF on every platform. The mingw
# CI worker re-runs bind_clangbind.das to detect regen drift; without
# eol=lf, autocrlf-true on the Windows runner checks out CRLF and the
# regen (which writes LF) reports every line as changed.
modules/dasClangBind/src/*.cpp text eol=lf
modules/dasClangBind/src/*.h text eol=lf
modules/dasClangBind/src/*.inc text eol=lf