.editorconfig 446 B

123456789101112131415161718192021222324252627
  1. # editorconfig.org
  2. root = true
  3. [{*.patch,syntax_test_*}]
  4. trim_trailing_whitespace = false
  5. [{*.c,*.cpp,*.h,*.ino,*.py,Makefile}]
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. end_of_line = lf
  9. [{*.c,*.cpp,*.h,*.ino}]
  10. charset = utf-8
  11. indent_style = space
  12. indent_size = 2
  13. [{Makefile}]
  14. indent_style = tab
  15. indent_size = 2
  16. [{*.py}]
  17. indent_style = space
  18. indent_size = 4
  19. [{*.conf,*.sublime-project}]
  20. indent_style = tab
  21. indent_size = 4