Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 1 | [patterns] |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 2 | |
Georg Brandl | faa9ad2 | 2011-03-05 15:06:13 +0100 | [diff] [blame] | 3 | # Non human-editable files are binary |
| 4 | |
| 5 | **.dsp = BIN |
| 6 | **.dsw = BIN |
| 7 | **.mk = BIN |
| 8 | **.sln = BIN |
| 9 | **.vcproj = BIN |
| 10 | **.vsprops = BIN |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 11 | |
| 12 | **.aif = BIN |
Benjamin Peterson | 4243fbf | 2013-10-12 15:55:24 -0400 | [diff] [blame] | 13 | **.aifc = BIN |
| 14 | **.aiff = BIN |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 15 | **.au = BIN |
| 16 | **.bmp = BIN |
Steve Dower | 0ca4b6f | 2016-09-01 11:21:56 -0700 | [diff] [blame] | 17 | **.blob = BIN |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 18 | **.db = BIN |
| 19 | **.exe = BIN |
| 20 | **.icns = BIN |
| 21 | **.gif = BIN |
| 22 | **.ico = BIN |
| 23 | **.info = BIN |
| 24 | **.jpg = BIN |
| 25 | **.pck = BIN |
| 26 | **.png = BIN |
| 27 | **.psd = BIN |
| 28 | **.tar = BIN |
Benjamin Peterson | 4243fbf | 2013-10-12 15:55:24 -0400 | [diff] [blame] | 29 | **.wav = BIN |
Donald Stufft | 8aaff54 | 2014-11-11 10:24:11 -0500 | [diff] [blame] | 30 | **.whl = BIN |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 31 | **.xar = BIN |
| 32 | **.zip = BIN |
| 33 | |
| 34 | Lib/email/test/data/msg_26.txt = BIN |
Victor Stinner | 2c5e28e | 2011-05-17 15:49:56 +0200 | [diff] [blame] | 35 | Lib/test/cjkencodings/* = BIN |
Georg Brandl | faa9ad2 | 2011-03-05 15:06:13 +0100 | [diff] [blame] | 36 | Lib/test/decimaltestdata/*.decTest = BIN |
Victor Stinner | 2c5e28e | 2011-05-17 15:49:56 +0200 | [diff] [blame] | 37 | Lib/test/sndhdrdata/sndhdr.* = BIN |
Georg Brandl | faa9ad2 | 2011-03-05 15:06:13 +0100 | [diff] [blame] | 38 | |
Zachary Ware | b9298a4 | 2015-04-13 11:54:11 -0500 | [diff] [blame] | 39 | # Windows batch files work best with CRLF, there can be subtle problems with LF |
| 40 | **.bat = CRLF |
| 41 | |
Zachary Ware | 0f8f917 | 2015-04-13 12:18:11 -0500 | [diff] [blame] | 42 | # The Windows readme is likely to be read in Notepad, so make it readable |
| 43 | PCbuild/readme.txt = CRLF |
Zachary Ware | 4734372 | 2015-07-16 00:24:48 -0500 | [diff] [blame] | 44 | PC/VS9.0/readme.txt = CRLF |
Zachary Ware | 0f8f917 | 2015-04-13 12:18:11 -0500 | [diff] [blame] | 45 | |
Georg Brandl | faa9ad2 | 2011-03-05 15:06:13 +0100 | [diff] [blame] | 46 | # All other files (which presumably are human-editable) are "native". |
| 47 | # This must be the last rule! |
| 48 | |
| 49 | ** = native |
Georg Brandl | 1060380 | 2010-11-26 08:10:41 +0000 | [diff] [blame] | 50 | |
| 51 | [repository] |
Georg Brandl | faa9ad2 | 2011-03-05 15:06:13 +0100 | [diff] [blame] | 52 | native = LF |