From 249edda10badb27e7f59b9717cc9c5a0864f5ede Mon Sep 17 00:00:00 2001 From: Webber Date: Sun, 2 Feb 2020 01:41:26 +0100 Subject: [PATCH] =?UTF-8?q?Add=20editorconfig=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e92b3e0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 100 +tab_width = 2 +trim_trailing_whitespace = true + +[*.md] +max_line_length = off +trim_trailing_whitespace = false + +[*.{yml,yaml}] +max_line_length = off + +[COMMIT_EDITMSG] +max_line_length = off