.editorconfig 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ##
  2. ## PROJECT: Mouri Internal Library Essentials
  3. ## FILE: .editorconfig
  4. ## PURPOSE: The root .editorconfig file for C++ Project
  5. ##
  6. ## LICENSE: The MIT License
  7. ##
  8. ## DEVELOPER: Mouri_Naruto (Mouri_Naruto AT Outlook.com)
  9. ##
  10. root = true
  11. [*]
  12. charset = utf-8-bom
  13. end_of_line = crlf
  14. [*.md]
  15. insert_final_newline = true
  16. [*.{c,c++,cc,cpp,cxx,h,h++,hh,hpp,hxx,idl,inl,ipp,tlh,tli}]
  17. indent_style = space
  18. indent_size = 4
  19. insert_final_newline = true
  20. trim_trailing_whitespace = true
  21. vc_generate_documentation_comments = doxygen_slash_star
  22. [*.{js,json,xml,toml,xaml}]
  23. indent_style = space
  24. indent_size = 2
  25. insert_final_newline = true
  26. trim_trailing_whitespace = true
  27. [*.rc]
  28. charset = utf-16le
  29. [Mile.Project.Properties.Template.h]
  30. charset = utf-16le
  31. [Mile.Project.Properties.h]
  32. charset = utf-16le
  33. [*.bat]
  34. charset = utf-8
  35. insert_final_newline = true
  36. [*.sh]
  37. charset = utf-8
  38. end_of_line = lf
  39. insert_final_newline = true