From 10fac30c7b7c643684671f841f39a8f3e674f98c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Mon, 28 Oct 2019 00:31:41 +1300 Subject: [PATCH] Add editorconfig --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..af06a30 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.toml] +indent_size = 2 + +[*.yml] +indent_size = 2 + +[*.wat] +indent_size = 2 + +[*.md] +indent_style = space +indent_size = 3