From 0bc863eb96da495d3bc378eccd53319c428be264 Mon Sep 17 00:00:00 2001 From: Bakhtiyor Ruziev Date: Sun, 16 Jun 2024 15:10:21 +0500 Subject: [PATCH] add editor config --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..25b17ff --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = tab +insert_final_newline = true + +[*.md] +indent_style = space +trim_trailing_whitespace = false + +[*.{yml,json}] +indent_size = 2 +indent_style = space