.editorconfig 583 B

123456789101112131415161718192021222324252627
  1. ###############################################################################
  2. # Unity Project - A Test Framework for C
  3. # .editorconfig - F. Zahn 2019
  4. ###############################################################################
  5. # This is the topmost .editorconfig file
  6. root = true
  7. # Settings that apply to all languages / files
  8. [*]
  9. charset = utf-8
  10. indent_size = 4
  11. indent_style = space
  12. insert_final_newline = true
  13. trim_trailing_whitespace = true
  14. [*.md]
  15. trim_trailing_whitespace = false
  16. [*.txt]
  17. trim_trailing_whitespace = false
  18. [*.rb]
  19. indent_size = 2
  20. [*.yml]
  21. indent_size = 2