.gitattributes 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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
  12. ## Handle line endings automatically for files detected as
  13. ## text and leave all files detected as binary untouched.
  14. ## This will handle all files NOT defined below.
  15. * text=auto
  16. ## SOURCE CODE
  17. *.bat text eol=crlf
  18. *.coffee text
  19. *.css text
  20. *.htm text
  21. *.html text
  22. *.inc text
  23. *.ini text
  24. *.js text
  25. *.json text
  26. *.jsx text
  27. *.less text
  28. *.od text
  29. *.onlydata text
  30. *.php text
  31. *.pl text
  32. *.py text
  33. *.rb text
  34. *.sass text
  35. *.scm text
  36. *.scss text
  37. *.sh text eol=lf
  38. *.sql text
  39. *.styl text
  40. *.tag text
  41. *.ts text
  42. *.tsx text
  43. *.xml text
  44. *.xhtml text
  45. ## DOCKER
  46. *.dockerignore text
  47. Dockerfile text
  48. ## DOCUMENTATION
  49. *.markdown text
  50. *.md text
  51. *.mdwn text
  52. *.mdown text
  53. *.mkd text
  54. *.mkdn text
  55. *.mdtxt text
  56. *.mdtext text
  57. *.txt text
  58. AUTHORS text
  59. CHANGELOG text
  60. CHANGES text
  61. CONTRIBUTING text
  62. COPYING text
  63. copyright text
  64. *COPYRIGHT* text
  65. INSTALL text
  66. license text
  67. LICENSE text
  68. NEWS text
  69. readme text
  70. *README* text
  71. TODO text
  72. ## TEMPLATES
  73. *.dot text
  74. *.ejs text
  75. *.haml text
  76. *.handlebars text
  77. *.hbs text
  78. *.hbt text
  79. *.jade text
  80. *.latte text
  81. *.mustache text
  82. *.njk text
  83. *.phtml text
  84. *.tmpl text
  85. *.tpl text
  86. *.twig text
  87. ## LINTERS
  88. .babelrc text
  89. .csslintrc text
  90. .eslintrc text
  91. .htmlhintrc text
  92. .jscsrc text
  93. .jshintrc text
  94. .jshintignore text
  95. .prettierrc text
  96. .stylelintrc text
  97. ## CONFIGS
  98. *.bowerrc text
  99. *.cnf text
  100. *.conf text
  101. *.config text
  102. .browserslistrc text
  103. .editorconfig text
  104. .gitattributes text
  105. .gitconfig text
  106. .gitignore text
  107. .htaccess text
  108. *.npmignore text
  109. *.yaml text
  110. *.yml text
  111. browserslist text
  112. Makefile text
  113. makefile text
  114. ## HEROKU
  115. Procfile text
  116. .slugignore text
  117. ## GRAPHICS
  118. *.ai binary
  119. *.bmp binary
  120. *.eps binary
  121. *.gif binary
  122. *.ico binary
  123. *.jng binary
  124. *.jp2 binary
  125. *.jpg binary
  126. *.jpeg binary
  127. *.jpx binary
  128. *.jxr binary
  129. *.pdf binary
  130. *.png binary
  131. *.psb binary
  132. *.psd binary
  133. *.svg text
  134. *.svgz binary
  135. *.tif binary
  136. *.tiff binary
  137. *.wbmp binary
  138. *.webp binary
  139. ## AUDIO
  140. *.kar binary
  141. *.m4a binary
  142. *.mid binary
  143. *.midi binary
  144. *.mp3 binary
  145. *.ogg binary
  146. *.ra binary
  147. ## VIDEO
  148. *.3gpp binary
  149. *.3gp binary
  150. *.as binary
  151. *.asf binary
  152. *.asx binary
  153. *.fla binary
  154. *.flv binary
  155. *.m4v binary
  156. *.mng binary
  157. *.mov binary
  158. *.mp4 binary
  159. *.mpeg binary
  160. *.mpg binary
  161. *.ogv binary
  162. *.swc binary
  163. *.swf binary
  164. *.webm binary
  165. ## ARCHIVES
  166. *.7z binary
  167. *.gz binary
  168. *.jar binary
  169. *.rar binary
  170. *.tar binary
  171. *.zip binary
  172. ## FONTS
  173. *.ttf binary
  174. *.eot binary
  175. *.otf binary
  176. *.woff binary
  177. *.woff2 binary
  178. ## EXECUTABLES
  179. *.exe binary
  180. *.pyc binary