Skip to content

Commit

Permalink
Added .editorconfig file to force editor settings for certain file ty…
Browse files Browse the repository at this point in the history
…pes (#3334)
  • Loading branch information
secretdataz committed Jul 30, 2018
1 parent a05ed6e commit 3165e52
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .editorconfig
@@ -0,0 +1,24 @@
# 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
[*]
insert_final_newline = true
trim_trailing_whitespace = true

# 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

0 comments on commit 3165e52

Please sign in to comment.