.editorconfig 815 B

1234567891011121314151617181920212223242526272829303132333435
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # Since OBS follows the Linux kernel coding style I have started this file to
  3. # help with automatically setting various text editors to those requirements.
  4. # top-most EditorConfig file
  5. root = true
  6. # Unix-style newlines with a newline ending every file.
  7. [*]
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. charset = utf-8
  11. indent_style = tab
  12. indent_size = 8
  13. # As per notr1ch, for 3rd party code that's a part of obs-outputs.
  14. [plugins/obs-outputs/librtmp/*.{cpp,c,h}]
  15. indent_style = space
  16. indent_size = 4
  17. [CMakeLists.txt]
  18. indent_style = space
  19. indent_size = 2
  20. [**/CMakeLists.txt]
  21. indent_style = space
  22. indent_size = 2
  23. [cmake/**/*.cmake]
  24. indent_style = space
  25. indent_size = 2
  26. [plugins/rtmp-services/data/**/*.json]
  27. indent_style = space
  28. indent_size = 4