blob: 2929e835895a5127de7e505fb205576308cfbd97 [file] [log] [blame]
John Kessenichd49d5242015-06-26 16:29:10 -06001# test files have a mix of lf/crlf, and that's a good thing, for testing, don't mess with it
2# bash scripts need lines ending with lf, and that's correct for Windows too, e.g., under Cygwin
3# (scripts often don't have a suffix)
4* -text
5*.sh text eof=lf
6
7# txt files should be native and normalized
8*.txt text
9
10# source code can be native and normalized, but simpler if lf everywhere; will try that way
John Kessenich00054da2018-12-10 16:47:05 -070011*.h text eol=lf
12*.c text eol=lf
13*.cpp text eol=lf
14*.y text eol=lf
15*.out text eol=lf
16*.conf text eol=lf
17*.err text eol=lf