.editorconfig 652 B

123456789101112131415161718192021222324252627282930
  1. # rAthena EditorConfig file
  2. # EditorConfig is awesome: https://EditorConfig.org
  3. # This file should be encoded in UTF-8 with CRLF or LF line endings.
  4. root = true
  5. # Add a blank newline to the end of every file after saving
  6. # Trim trailing whitespace
  7. # Adjust character set
  8. [*]
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. charset = utf-8
  12. # Use tabs in source
  13. [*.{cpp,c,hpp,h}]
  14. indent_style = tab
  15. # YAML does not support hard tabs.
  16. [*.{yml,yaml}]
  17. indent_style = space
  18. indent_size = 4
  19. # Use tabs in Makefiles
  20. [Makefile*]
  21. indent_style = tab
  22. # Scripts should use hard tabs to prevent script header goofs.
  23. [npc/**.txt]
  24. indent_style = tab