From 8815537a60104728cc8ca5f14f5e8863a605893f Mon Sep 17 00:00:00 2001 From: Jan Wille Date: Thu, 11 Aug 2022 11:13:23 +0200 Subject: [PATCH] add editorconfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d86cc9c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +[*] +charset = utf-8 +insert_final_newline = true + +[*.py] +indent_style = space +indent_size = 4 +max_line_length = 88 + +[*.{yml,yaml}] +indent_style = space +indent_size = 2 +max_line_length = 120 + +[Makefile] +indent_style = tab