From 62ecebb5cc6d69463d79a3686f0d7e62ce5745c7 Mon Sep 17 00:00:00 2001 From: Daniel Phan <34669737+danielphan2003@users.noreply.github.com> Date: Tue, 2 Nov 2021 20:56:04 +0000 Subject: [PATCH] add .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..0ed093c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# Editor configuration, see http://editorconfig.org +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 +indent_style = space +indent_size = 2 + +[*.py] +indent_size = 4 + +[*.md] +max_line_length = off +trim_trailing_whitespace = false