You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
652 B
INI
31 lines
652 B
INI
# rAthena EditorConfig file
|
|
# EditorConfig is awesome: https://EditorConfig.org
|
|
# This file should be encoded in UTF-8 with CRLF or LF line endings.
|
|
|
|
root = true
|
|
|
|
# Add a blank newline to the end of every file after saving
|
|
# Trim trailing whitespace
|
|
# Adjust character set
|
|
[*]
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
|
|
# Use tabs in source
|
|
[*.{cpp,c,hpp,h}]
|
|
indent_style = tab
|
|
|
|
# YAML does not support hard tabs.
|
|
[*.{yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# Use tabs in Makefiles
|
|
[Makefile*]
|
|
indent_style = tab
|
|
|
|
# Scripts should use hard tabs to prevent script header goofs.
|
|
[npc/**.txt]
|
|
indent_style = tab
|