.gitattributes 607 B

12345678910111213141516171819
  1. CHANGELOG.* merge=union
  2. # Specs depend on character counts, if we don't specify the line endings the
  3. # fixtures will vary depending on platform
  4. spec/fixtures/**/*.js text eol=lf
  5. spec/fixtures/**/*.coffee text eol=lf
  6. spec/fixtures/**/*.less text eol=lf
  7. spec/fixtures/**/*.css text eol=lf
  8. spec/fixtures/**/*.txt text eol=lf
  9. spec/fixtures/dir/**/* text eol=lf
  10. # Git 1.7 does not support **/* patterns
  11. spec/fixtures/css.css text eol=lf
  12. spec/fixtures/sample.js text eol=lf
  13. spec/fixtures/sample.less text eol=lf
  14. spec/fixtures/sample.txt text eol=lf
  15. # Windows bash scripts are also Unix LF endings
  16. *.sh eol=lf