.editorconfig 554 B

123456789101112131415161718192021222324252627282930313233
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. trim_trailing_whitespace = true
  5. insert_final_newline = true
  6. [{*.patch,syntax_test_*}]
  7. trim_trailing_whitespace = false
  8. [{*.c,*.cpp,*.h,*.ino,*.py,Makefile}]
  9. end_of_line = lf
  10. [{*.c,*.cpp,*.h,*.ino}]
  11. charset = utf-8
  12. indent_style = space
  13. indent_size = 2
  14. [{Makefile}]
  15. indent_style = tab
  16. indent_size = 2
  17. [*.md]
  18. # Two spaces at the end of the line means newline in Markdown
  19. trim_trailing_whitespace = false
  20. [{*.py}]
  21. indent_style = space
  22. indent_size = 4
  23. [{*.conf,*.sublime-project}]
  24. indent_style = tab
  25. indent_size = 4