John Kessenich | d49d524 | 2015-06-26 16:29:10 -0600 | [diff] [blame] | 1 | # 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 |
| 11 | *.h text eof=lf |
| 12 | *.c text eof=lf |
| 13 | *.cpp text eof=lf |
| 14 | *.y text eof=lf |
John Kessenich | cc16fa0 | 2015-12-10 18:01:54 -0700 | [diff] [blame] | 15 | *.out text eof=lf |
| 16 | *.conf text eof=lf |
| 17 | *.err text eof=lf |