.editorconfig 788 B

12345678910111213141516171819202122232425
  1. # See http://editorconfig.org to read about the EditorConfig format.
  2. # - In theory automatically supported by VS2017+ and most common IDE or text editors.
  3. # - In practice VS2019 stills gets trailing whitespaces wrong :(
  4. # - Suggest install to trim whitespaces: https://marketplace.visualstudio.com/items?itemName=MadsKristensen.TrailingWhitespaceVisualizer
  5. # - Alternative for older VS2010 to VS2015: https://marketplace.visualstudio.com/items?itemName=EditorConfigTeam.EditorConfig
  6. # top-most EditorConfig file
  7. root = true
  8. # Default settings:
  9. # Use 4 spaces as indentation
  10. [*]
  11. indent_style = space
  12. indent_size = 4
  13. insert_final_newline = true
  14. trim_trailing_whitespace = true
  15. [imstb_*]
  16. indent_size = 3
  17. trim_trailing_whitespace = false
  18. [Makefile]
  19. indent_style = tab
  20. indent_size = 4