.editorconfig 307 B

12345678910111213141516171819202122232425262728
  1. root = true
  2. [*]
  3. indent_style = space
  4. end_of_line = lf
  5. [*.{bzl,bazel}]
  6. indent_size = 4
  7. [*.{h,hpp,hxx,cpp,cxx,cc,c}]
  8. indent_size = 2
  9. wrap_width = 90
  10. [*.html]
  11. indent_size = 2
  12. [*.java]
  13. indent_size = 2
  14. [*.proto]
  15. indent_size = 2
  16. [*.{py,pyx,pxd,pxi}]
  17. indent_size = 4
  18. wrap_width = 79
  19. [*.sh]
  20. indent_size = 2