From 6bf3a95054e88eeeb3861b2aa72d28d4a43484d3 Mon Sep 17 00:00:00 2001 From: David Walluck Date: Wed, 12 Mar 2025 15:34:54 -0400 Subject: [PATCH] Add EditorConfig file --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..9f108ae --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 120 +tab_width = 2 +trim_trailing_whitespace = true + +[*.java] +indent_size = 4 +tab_width = 4