From 80e01d680b0f6b740e72b5d2cfa51484d842c624 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Mon, 13 Dec 2021 12:47:26 +0100 Subject: [PATCH] add editor config --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..8140db745 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +max_line_length = 120 +tab_width = 4 +ij_continuation_indent_size = 8 +ij_formatter_off_tag = @formatter:off +ij_formatter_on_tag = @formatter:on +ij_formatter_tags_enabled = false +ij_wrap_on_typing = true +ij_java_names_count_to_use_import_on_demand = 999