From ae4ccc84ed17227f74ce135ea2019327ca0b4181 Mon Sep 17 00:00:00 2001 From: Zach Lovelady <108858+zlove@users.noreply.github.com> Date: Tue, 13 Sep 2022 23:24:10 -0600 Subject: [PATCH] Adding .editorconfig --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..80ef2e6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.py] +max_line_length = 88 + +[*.md] +max_line_length = 88 +trim_trailing_whitespace = false