.editorconfig 554 B

123456789101112131415161718192021222324
  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. [*]
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. # YAML does not support hard tabs.
  11. [*.{yml,yaml}]
  12. indent_style = space
  13. indent_size = 4
  14. # Use tabs in Makefiles
  15. [Makefile*]
  16. indent_style = tab
  17. # Scripts should use hard tabs to prevent script header goofs.
  18. [npc/**.txt]
  19. indent_style = tab