Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.editorconfig 594B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # To use this config on you editor, follow the instructions at:
  2. # http://editorconfig.org
  3. root = true
  4. [*]
  5. charset = utf-8
  6. insert_final_newline = true
  7. tab_width = 8
  8. [*.{c,h,cpp,hpp,cc,hh}]
  9. indent_style = space
  10. indent_size = 3
  11. max_line_length = 78
  12. [{Makefile*,*.mk}]
  13. indent_style = tab
  14. [{*.py,SCons*}]
  15. indent_style = space
  16. indent_size = 4
  17. [*.pl]
  18. indent_style = space
  19. indent_size = 4
  20. [*.m4]
  21. indent_style = space
  22. indent_size = 2
  23. [*.yml]
  24. indent_style = space
  25. indent_size = 2
  26. [*.patch]
  27. trim_trailing_whitespace = false
  28. [{meson.build,meson_options.txt}]
  29. indent_style = space
  30. indent_size = 2