From 9f8e6148f15d7b8bc446fde6b8d2a102843a5a59 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 23 Jul 2017 23:23:36 +0200 Subject: Add .editorconfig file This change adds an .editorconfig file for universal editor configuration for the project. --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..29e7b14b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org +root = true + +[*] +indent_style = tab +indent_size = 4 + +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false +indent_style = space -- cgit v1.2.3