From 3f179ee9bf03113436c81b60832d803156ad49eb Mon Sep 17 00:00:00 2001 From: ZaneHannanAU Date: Sun, 9 Jun 2019 07:47:22 +1000 Subject: [PATCH] Adds a .editorconfig to keep code style similar on supporting configurations. (#1167) --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..444772e95 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# Editor configuration, see https://editorconfig.org +root = true + +[*.kt] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true +