From b0f8d8bc7205ebe84fd5ffadce69f4a7f965fc77 Mon Sep 17 00:00:00 2001 From: Salih Emin Date: Thu, 24 Sep 2020 09:45:52 +0300 Subject: [PATCH] Contributors should use common settings in VSCode Modern IDEs use different settings. In this project, all the maintainers are using heavily VSCode. As a result it makes sense to use the same, configurations when it comes on doing many things related to syntax. User should install the following extention: - https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig This PR Fixes: #18 --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..22fc87c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +end_of_line = lf +indent_sie = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true +insert_final_newline = true +charset = utf-8 + +[*.{md,yml}] +indent_size = 2 +indent_style = space