From 511b1214e95fe179cda1c7349cc16819a2ea2289 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 1 Dec 2020 15:26:51 -0500 Subject: [PATCH 1/2] - adds an editor config to put an end to tab and space mix from now on --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..27fd12c6992 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +[*.java] +indent_style = tab +insert_final_newline = true +tab_width = 3 +trim_trailing_whitespace = true \ No newline at end of file From 46e7613777826ab753e0e77133547617b96f2d23 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 1 Dec 2020 15:42:33 -0500 Subject: [PATCH 2/2] - updates editor config to match generator --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 27fd12c6992..3bf6f4f2b7a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,5 @@ [*.java] -indent_style = tab +indent_style = space +indent_size = 4 insert_final_newline = true -tab_width = 3 trim_trailing_whitespace = true \ No newline at end of file