From 881a1535fcbbd64aa463dfa67b402f744fe4426e Mon Sep 17 00:00:00 2001 From: Nils Winkler Date: Fri, 8 Jan 2016 08:35:43 +0100 Subject: [PATCH] Added editorconfig file See http://editorconfig.org/ for more info... If you're using an editor that supports _editorconfig_, the editor's settings for indentation, line endings, etc. should automatically adjust when editing files. --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4dc96bd5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# EditorConfig is awesome: http://EditorConfig.org + +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false