From 56a8cf86fcf2ac9af5569c1389289c4fb9222a03 Mon Sep 17 00:00:00 2001 From: Neil Girdhar Date: Sat, 8 Feb 2025 05:38:35 -0500 Subject: [PATCH 1/2] Add editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..3b6bbcce --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*.{py,md}] +indent_style = space +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true + +[*.py] +max_line_length = 88 +indent_size = 4 + +[*.md] +max_line_length = 88 From 78e5b96d036f3f5128ce5d1e671654f200aa34a0 Mon Sep 17 00:00:00 2001 From: Lucas Colley Date: Sat, 8 Feb 2025 14:38:16 +0000 Subject: [PATCH 2/2] match prettier default --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 3b6bbcce..46f23570 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,4 +11,4 @@ max_line_length = 88 indent_size = 4 [*.md] -max_line_length = 88 +max_line_length = 80