From 72666f5ba844f3c61fbaabbf7c6133107dfc0dcc Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Mon, 7 Dec 2020 02:32:23 +0200 Subject: [PATCH] Add editor configuration PR-URL: https://github.com/metarhia/Example/pull/60 --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..dde78778 --- /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