From 805044fcf11771fdde8e19f4b41bf8cc08ee2d51 Mon Sep 17 00:00:00 2001 From: Koitharu Date: Sun, 20 Feb 2022 18:12:04 +0200 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..ab724a305 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +max_line_length = 120 +tab_width = 4 + +[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul}] +ij_continuation_indent_size = 4 + +[{*.gradle.kts,*.kt,*.kts,*.main.kts}] +ij_kotlin_allow_trailing_comma = true +ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL