Updated EditorConfig (#4394)

* Set character set to UTF-8 for all files.
* Use tabs in C related files.
This commit is contained in:
Aleos 2019-10-07 08:54:08 -04:00 committed by GitHub
parent 29e753ce83
commit e54b68a4c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,9 +6,15 @@ root = true
# Add a blank newline to the end of every file after saving # Add a blank newline to the end of every file after saving
# Trim trailing whitespace # Trim trailing whitespace
# Adjust character set
[*] [*]
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = 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. # YAML does not support hard tabs.
[*.{yml,yaml}] [*.{yml,yaml}]