From 0fada7ffc2cc84d4f80ef390d47032a773a70a35 Mon Sep 17 00:00:00 2001 From: Arksine Date: Sun, 8 Nov 2020 08:50:51 -0500 Subject: [PATCH] moonraker: add .editorconfig file Developers may use this to help conform to the repo's basic coding style. Signed-off-by: Eric Callahan --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f76d6a5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# Editorconfig file for moonraker repo, courtesy of @trevjonez + +root = true + +[*] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.py] +max_line_length = 80