From 12c86b56936fc08a1fc89f7f6488f7a2aceddf3a Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Fri, 22 Sep 2023 22:49:10 +0300 Subject: [PATCH] Add editors config --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dde7877 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# http://editorconfig.org +root = true + +[*] +end_of_line = lf +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true + +[{*.js,*.mjs,*.ts,*.json,*.yml}] +indent_size = 2 +indent_style = space