From 32b47980fbe0300a5785f0e302b36a302df1581d Mon Sep 17 00:00:00 2001 From: marius92mc Date: Mon, 16 Oct 2017 01:26:30 +0300 Subject: [PATCH] Add .editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..88e3b4e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +; http://editorconfig.org/ + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +trim_trailing_whitespace = true + +[*.go] +indent_style = tab +indent_size = 4 +