.gitattributes 566 B

12345678910111213141516171819202122
  1. # Code formatter settings
  2. *.c filter=uncrustify
  3. *.cpp filter=uncrustify
  4. *.h filter=uncrustify
  5. *.hpp filter=uncrustify
  6. # Set the default behavior, in case people don't have core.autocrlf set.
  7. * text=auto
  8. # Explicitly declare text files you want to always be normalized and converted
  9. # to native line endings on checkout.
  10. *.c text
  11. *.h text
  12. # Declare files that will always have CRLF line endings on checkout.
  13. *.sln text eol=crlf
  14. *.stc text eol=crlf
  15. *.eds text eol=crlf
  16. # Denote all files that are truly binary and should not be modified.
  17. *.png binary
  18. *.jpg binary