From ca2f2164ac813a1831aed5a50821bb62f0f9f243 Mon Sep 17 00:00:00 2001 From: Nikita Glazov Date: Thu, 20 Feb 2020 22:13:31 +0300 Subject: [PATCH] Add editorconfig (#1142) * Add editorconfig * Update indent value --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4c754efc --- /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 + +[*] + +# Change these settings to your own preference +indent_style = space +indent_size = 4 + +# We recommend you to keep these unchanged +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true