Module: wine Branch: master Commit: 530df61f2f93270905f19c1318d03d985f77337c URL: https://source.winehq.org/git/wine.git/?a=commit;h=530df61f2f93270905f19c131...
Author: Eberhard Beilharz eb1@sil.org Date: Thu Dec 13 09:04:00 2018 +0100
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 eb1@sil.org Signed-off-by: Alexandre Julliard julliard@winehq.org
---
.editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+)
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5f1c49f --- /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