.gitattributes 662 B

1234567891011121314151617181920
  1. # Set default behaviour, in case users don't have core.autocrlf set.
  2. * text=auto
  3. # Explicitly declare text files we want to always be normalized and converted to native line endings on checkout.
  4. *.sh text eol=lf
  5. # Declare files that will always have CRLF line endings on checkout.
  6. *.sln text eol=crlf
  7. *.csproj text eol=crlf
  8. # Denote all files that are truly binary and should not be modified.
  9. *.png -text
  10. *.jpg -text
  11. #remove UI libraries from the statistic
  12. src/Presentation/Nop.Web/wwwroot/lib/** linguist-vendored
  13. src/Presentation/Nop.Web/wwwroot/lib_npm/** linguist-vendored
  14. #specify the .cshtml files as HTML
  15. *.cshtml linguist-language=HTML