From 530df61f2f93270905f19c1318d03d985f77337c Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Thu, 13 Dec 2018 09:04:00 +0100 Subject: [PATCH] Add .editorconfig file. This allows editors and IDEs to automatically adjust settings to the coding style prefered by Wine (cf. https://editorconfig.org/). Signed-off-by: Eberhard Beilharz Signed-off-by: Alexandre Julliard --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..5f1c49f76a8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +# Defaults +[*] +indent_style = space +indent_size = 4 +tab_width = 8 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 100