From 6e839f76756978ae123ef73c5677c45e1ee1b692 Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Sat, 23 Jan 2021 07:07:22 +0000 Subject: [PATCH] Added .editorconfig. (#35) Applies some elements of PEP8 during editing in the editors supporting it. --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..321d6a7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 4 +insert_final_newline = true +end_of_line = lf + +[*.{yml,yaml}] +indent_style = space +indent_size = 2