From 06235aec98e7b3796ec3a00650cb90dc3d260656 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 13 Nov 2016 21:11:20 +0100 Subject: [PATCH] Add .editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..ee31794e8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# http://editorconfig.org/ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{hpp,inl,cpp,lua}] +indent_style = tab + +[*.html] +indent_size = 4 +indent_style = space