From 9a834565d643cb04de21e12743c612d2c3663038 Mon Sep 17 00:00:00 2001 From: Abhyudaya Sharma Date: Tue, 16 Jul 2019 10:14:28 +0530 Subject: [PATCH] Add editorconfig See https://editorconfig.org/ --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..11dc8e2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.properties] +charset = latin1 + +[*.{yaml, yml}] +indent_size = 2