.gitattributes 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # From https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
  2. # Handle line endings automatically for files detected as text
  3. # and leave all files detected as binary untouched.
  4. * text=auto
  5. #
  6. # The above will handle all files NOT found below
  7. #
  8. #
  9. ## These files are text and should be normalized (Convert crlf => lf)
  10. #
  11. # source code
  12. *.php text
  13. *.css text
  14. *.sass text
  15. *.scss text
  16. *.less text
  17. *.styl text
  18. *.js text eol=lf
  19. *.coffee text
  20. *.json text
  21. *.htm text
  22. *.html text
  23. *.xml text
  24. *.svg text
  25. *.txt text
  26. *.ini text
  27. *.inc text
  28. *.pl text
  29. *.rb text
  30. *.py text
  31. *.scm text
  32. *.sql text
  33. *.sh text
  34. *.bat text
  35. # templates
  36. *.ejs text
  37. *.hbt text
  38. *.jade text
  39. *.haml text
  40. *.hbs text
  41. *.dot text
  42. *.tmpl text
  43. *.phtml text
  44. # server config
  45. .htaccess text
  46. .nginx.conf text
  47. # git config
  48. .gitattributes text
  49. .gitignore text
  50. .gitconfig text
  51. # code analysis config
  52. .jshintrc text
  53. .jscsrc text
  54. .jshintignore text
  55. .csslintrc text
  56. # misc config
  57. *.yaml text
  58. *.yml text
  59. .editorconfig text
  60. # build config
  61. *.npmignore text
  62. *.bowerrc text
  63. # Heroku
  64. Procfile text
  65. .slugignore text
  66. # Documentation
  67. *.md text
  68. LICENSE text
  69. AUTHORS text
  70. #
  71. ## These files are binary and should be left untouched
  72. #
  73. # (binary is a macro for -text -diff)
  74. *.png binary
  75. *.jpg binary
  76. *.jpeg binary
  77. *.gif binary
  78. *.ico binary
  79. *.mov binary
  80. *.mp4 binary
  81. *.mp3 binary
  82. *.flv binary
  83. *.fla binary
  84. *.swf binary
  85. *.gz binary
  86. *.zip binary
  87. *.7z binary
  88. *.ttf binary
  89. *.eot binary
  90. *.woff binary
  91. *.pyc binary
  92. *.pdf binary