From 4783c065dafb81353b1aa667c88b6a6e8f410601 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Tue, 21 Jul 2020 21:26:46 +0100 Subject: [PATCH] Configure editors for uniform whitespace handling --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5374960a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +indent_size = 4 + +[*.md] +indent_size = 2