From 511404d23f5edd6ccf79db1fc1b0ba622134db24 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 29 Nov 2019 19:31:34 +0200 Subject: initial commit: working version --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..39a76e3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# Editor configuration, see https://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = off +trim_trailing_whitespace = false + +[*.py] +indent_size = 4 -- cgit