.gitattributes (1903B)
1 # auto for anything unspecified 2 * text=auto 3 4 # sources 5 *.c text eol=lf 6 *.cc text eol=lf 7 *.cxx text eol=lf 8 *.cpp text eol=lf 9 *.c++ text eol=lf 10 *.hpp text eol=lf 11 *.h text eol=lf 12 *.h++ text eol=lf 13 *.hh text eol=lf 14 *.bat text eol=crlf 15 *.cmd text eol=crlf 16 *.coffee text eol=lf 17 *.css text eol=lf 18 *.htm text eol=lf 19 *.html text eol=lf 20 *.inc text eol=lf 21 *.ini text eol=crlf 22 *.js text eol=lf 23 *.jsx text eol=lf 24 *.json text eol=lf 25 *.less text eol=lf 26 *.php text eol=lf 27 *.pl text eol=lf 28 *.py text eol=lf 29 *.rb text eol=lf 30 *.sass text eol=lf 31 *.scm text eol=lf 32 *.scss text eol=lf 33 *.sh text eol=lf 34 *.sql text eol=lf 35 *.styl text eol=lf 36 *.ts text eol=lf 37 *.xml text eol=lf 38 *.xhtml text eol=lf 39 40 # make files (need to always use lf for compatibility with Windows 10 bash) 41 Makefile eol=lf 42 *.mk eol=lf 43 44 # make files (need to always use lf for compatibility with Windows 10 bash) 45 *.sh eol=lf 46 47 # documentation 48 *.markdown text eol=lf 49 *.md text eol=lf 50 *.mdwn text eol=lf 51 *.mdown text eol=lf 52 *.mkd text eol=lf 53 *.mkdn text eol=lf 54 *.mdtxt text eol=lf 55 *.mdtext text eol=lf 56 *.txt text eol=lf 57 AUTHORS text eol=lf 58 CHANGELOG text eol=lf 59 CHANGES text eol=lf 60 CONTRIBUTING text eol=lf 61 COPYING text eol=lf 62 INSTALL text eol=lf 63 license text eol=lf 64 LICENSE text eol=lf 65 NEWS text eol=lf 66 readme text eol=lf 67 *README* text eol=lf 68 TODO text eol=lf 69 70 GRAPHICS 71 *.ai binary 72 *.bmp binary 73 *.eps binary 74 *.gif binary 75 *.ico binary 76 *.jng binary 77 *.jp2 binary 78 *.jpg binary 79 *.jpeg binary 80 *.jpx binary 81 *.jxr binary 82 *.pdf binary 83 *.png binary 84 *.psb binary 85 *.psd binary 86 *.svg text eol=lf 87 *.svgz binary 88 *.tif binary 89 *.tiff binary 90 *.wbmp binary 91 *.webp binary 92 93 # hex files 94 *.hex binary 95 *.eep binary 96 nix/sources.nix linguist-generated=true