From 6e7bb15807b4677d07d1f6275b584868e30fb2a7 Mon Sep 17 00:00:00 2001 From: s1lent Date: Fri, 5 May 2017 03:00:48 +0700 Subject: [PATCH] Add basic editor rules. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..dd89059b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# Manual: +# http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# 1 tab = 4 spaces indentation and with a newline ending every file +[*] +indent_style = tab +indent_size = 4 +insert_final_newline = true