From 847b99b93e7937e8ac7cfd3492a0b66f819bb17c Mon Sep 17 00:00:00 2001 From: NebelNidas Date: Thu, 11 Apr 2024 11:05:47 +0200 Subject: [PATCH] Enhance editorconfig --- .editorconfig | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 308508db4..e7429edc9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,18 @@ -[*.{gradle,java,kotlin}] +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true indent_style = tab +tab_width = 4 + +[*.{gradle,java,kotlin}] ij_continuation_indent_size = 8 ij_java_imports_layout = $*, |, java.**, |, javax.**, |, *, |, cuchaz.enigma.** ij_java_class_count_to_use_import_on_demand = 999 + +[*.{yml,yaml}] +indent_style = space +indent_size = 2