.editorconfig 441 B

123456789101112131415161718192021222324252627
  1. root = true
  2. [*]
  3. charset = utf-8
  4. indent_style = tab
  5. indent_size = 4
  6. end_of_line = lf
  7. max_line_length = 100
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [include/bgfx/c99/*.h]
  11. indent_style = space
  12. [scripts/bindings-d.lua]
  13. trim_trailing_whitespace = false
  14. [*.ninja]
  15. indent_style = space
  16. [*.md]
  17. trim_trailing_whitespace = false
  18. max_line_length = 80
  19. [.github/workflows/*.yml]
  20. indent_style = space
  21. indent_size = 2