SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.6 KiB

4 years ago
  1. # see http://editorconfig.org/ for docs on this file
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 4
  6. end_of_line = lf ; help with sharing files across os's (i.e. network share or through local vm)
  7. #charset temporarily disabled due to bug in VS2017 changing to UTF-8 with BOM (https://favro.com/card/c564ede4ed3337f7b17986b6/Uni-17877)
  8. #charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. # trailing whitespace is significant in markdown (bad choice, bad!)
  12. [*.{md,markdown}]
  13. trim_trailing_whitespace = false
  14. # keep these and the VS stuff below in sync with .hgeol's CRLF extensions
  15. [*.{vcproj,bat,cmd,xaml,tt,t4,ttinclude}]
  16. end_of_line = crlf
  17. # this VS-specific stuff is based on experiments to see how VS will modify a file after it has been manually edited.
  18. # the settings are meant to closely match what VS does to minimize unnecessary diffs. this duplicates some settings in *
  19. # but let's be explicit here to be safe (in case someone wants to copy-paste this out to another .editorconfig).
  20. [*.{vcxproj,vcxproj.filters}]
  21. indent_style = space
  22. indent_size = 2
  23. end_of_line = crlf
  24. charset = utf-8-bom
  25. trim_trailing_whitespace = true
  26. insert_final_newline = false
  27. # must be broken out because of 51-char bug (https://github.com/editorconfig/editorconfig-visualstudio/issues/21)
  28. [*.{csproj,pyproj,props,targets}]
  29. indent_style = space
  30. indent_size = 2
  31. end_of_line = crlf
  32. charset = utf-8-bom
  33. trim_trailing_whitespace = true
  34. insert_final_newline = false
  35. [*.{sln,sln.template}]
  36. indent_style = tab
  37. indent_size = 4
  38. end_of_line = crlf
  39. charset = utf-8
  40. trim_trailing_whitespace = true
  41. insert_final_newline = false