.editorconfig 395 B

12345678910111213141516171819202122
  1. # https://EditorConfig.org
  2. # Top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file, utf-8 charset
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. charset = utf-8
  10. indent_style = space
  11. indent_size = 4
  12. [Makefile]
  13. indent_style = tab
  14. [prompts/*.txt]
  15. insert_final_newline = unset
  16. [examples/server/public/*]
  17. indent_size = 2