.gitattributes 895 B

123456789101112131415161718192021222324252627
  1. # Specs depend on character counts, if we don't specify the line endings the
  2. # fixtures will vary depending on platform
  3. spec/fixtures/**/*.js text eol=lf
  4. spec/fixtures/**/*.coffee text eol=lf
  5. spec/fixtures/**/*.less text eol=lf
  6. spec/fixtures/**/*.css text eol=lf
  7. spec/fixtures/**/*.txt text eol=lf
  8. spec/fixtures/dir/**/* text eol=lf
  9. # Git 1.7 does not support **/* patterns
  10. spec/fixtures/css.css text eol=lf
  11. spec/fixtures/sample.js text eol=lf
  12. spec/fixtures/sample.less text eol=lf
  13. spec/fixtures/sample.txt text eol=lf
  14. # Windows bash scripts are also Unix LF endings
  15. *.sh eol=lf
  16. # The script executables should be LF so they can be edited on Windows
  17. script/bootstrap text eol=lf
  18. script/build text eol=lf
  19. script/cibuild text eol=lf
  20. script/clean text eol=lf
  21. script/lint text eol=lf
  22. script/postprocess-junit-results text eol=lf
  23. script/test text eol=lf
  24. script/verify-snapshot-script text eol=lf