From b221454cac0dcc9e8c794099431d3b5302035887 Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Tue, 30 Jul 2024 11:40:40 -0500 Subject: [PATCH 1/2] Add an EditorConfig file --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..f364acf95 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig documentation: https://editorconfig.org + +root = true + +# Default settings applied to every file type. +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +max_line_length = 80 +trim_trailing_whitespace = true From ee032fcc11a8e30fc3202c3974d942884cdeccc3 Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Mon, 5 Aug 2024 14:16:51 -0500 Subject: [PATCH 2/2] Omit max_line_length --- .editorconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index f364acf95..f9e5f815a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,4 @@ indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true -max_line_length = 80 trim_trailing_whitespace = true