.gitattributes 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. ## GITATTRIBUTES FOR WEB PROJECTS
  2. #
  3. # These settings are for any web project.
  4. #
  5. # Details per file setting:
  6. # text These files should be normalized (i.e. convert CRLF to LF).
  7. # binary These files are binary and should be left untouched.
  8. #
  9. # Note that binary is a macro for -text -diff.
  10. ######################################################################
  11. ## AUTO-DETECT - Handle line endings automatically for files detected
  12. ## as text and leave all files detected as binary untouched.
  13. ## This will handle all files NOT defined below.
  14. * text=auto
  15. ## SOURCE CODE
  16. *.bat text eol=lf
  17. *.coffee text eol=lf
  18. *.css text eol=lf
  19. *.htm text eol=lf
  20. *.html text eol=lf
  21. *.inc text eol=lf
  22. *.ini text eol=lf
  23. *.js text eol=lf
  24. *.jsx text eol=lf
  25. *.json text eol=lf
  26. *.less text eol=lf
  27. *.php text eol=lf
  28. *.pl text eol=lf
  29. *.py text eol=lf
  30. *.rb text eol=lf
  31. *.sass text eol=lf
  32. *.scm text eol=lf
  33. *.scss text eol=lf
  34. *.sh text eol=lf
  35. *.sql text eol=lf
  36. *.styl text eol=lf
  37. *.ts text eol=lf
  38. *.xml text eol=lf
  39. *.xhtml text eol=lf
  40. ## DOCUMENTATION
  41. *.markdown text eol=lf
  42. *.md text eol=lf
  43. *.mdwn text eol=lf
  44. *.mdown text eol=lf
  45. *.mkd text eol=lf
  46. *.mkdn text eol=lf
  47. *.mdtxt text eol=lf
  48. *.mdtext text eol=lf
  49. *.txt text eol=lf
  50. AUTHORS text eol=lf
  51. CHANGELOG text eol=lf
  52. CHANGES text eol=lf
  53. CONTRIBUTING text eol=lf
  54. COPYING text eol=lf
  55. INSTALL text eol=lf
  56. license text eol=lf
  57. LICENSE text eol=lf
  58. NEWS text eol=lf
  59. readme text eol=lf
  60. *README* text eol=lf
  61. TODO text eol=lf
  62. ## TEMPLATES
  63. *.dot text eol=lf
  64. *.ejs text eol=lf
  65. *.haml text eol=lf
  66. *.handlebars text eol=lf
  67. *.hbs text eol=lf
  68. *.hbt text eol=lf
  69. *.jade text eol=lf
  70. *.latte text eol=lf
  71. *.mustache text eol=lf
  72. *.phtml text eol=lf
  73. *.tmpl text eol=lf
  74. ## LINTERS
  75. .csslintrc text eol=lf
  76. .eslintrc text eol=lf
  77. .jscsrc text eol=lf
  78. .jshintrc text eol=lf
  79. .jshintignore text eol=lf
  80. .stylelintrc text eol=lf
  81. ## CONFIGS
  82. *.bowerrc text eol=lf
  83. *.cnf text eol=lf
  84. *.conf text eol=lf
  85. *.config text eol=lf
  86. .editorconfig text eol=lf
  87. .gitattributes text eol=lf
  88. .gitconfig text eol=lf
  89. .gitignore text eol=lf
  90. .htaccess text eol=lf
  91. *.npmignore text eol=lf
  92. *.yaml text eol=lf
  93. *.yml text eol=lf
  94. Makefile text eol=lf
  95. makefile text eol=lf
  96. ## HEROKU
  97. Procfile text eol=lf
  98. .slugignore text eol=lf
  99. ## GRAPHICS
  100. *.ai binary
  101. *.bmp binary
  102. *.eps binary
  103. *.gif binary
  104. *.ico binary
  105. *.jng binary
  106. *.jp2 binary
  107. *.jpg binary
  108. *.jpeg binary
  109. *.jpx binary
  110. *.jxr binary
  111. *.pdf binary
  112. *.png binary
  113. *.psb binary
  114. *.psd binary
  115. *.svg text
  116. *.svgz binary
  117. *.tif binary
  118. *.tiff binary
  119. *.wbmp binary
  120. *.webp binary
  121. ## AUDIO
  122. *.kar binary
  123. *.m4a binary
  124. *.mid binary
  125. *.midi binary
  126. *.mp3 binary
  127. *.ogg binary
  128. *.ra binary
  129. ## VIDEO
  130. *.3gpp binary
  131. *.3gp binary
  132. *.as binary
  133. *.asf binary
  134. *.asx binary
  135. *.fla binary
  136. *.flv binary
  137. *.m4v binary
  138. *.mng binary
  139. *.mov binary
  140. *.mp4 binary
  141. *.mpeg binary
  142. *.mpg binary
  143. *.swc binary
  144. *.swf binary
  145. *.webm binary
  146. ## ARCHIVES
  147. *.7z binary
  148. *.gz binary
  149. *.rar binary
  150. *.tar binary
  151. *.zip binary
  152. ## FONTS
  153. *.ttf binary
  154. *.eot binary
  155. *.otf binary
  156. *.woff binary
  157. *.woff2 binary
  158. ## EXECUTABLES
  159. *.exe binary
  160. *.pyc binary