From 244903403ab2a2fc5a9eaa2ccc48f06cd6a824b8 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Sat, 21 Oct 2023 07:36:12 +0100 Subject: Internal Change: Add .editorconfig (#556) Internal Change: Add .editorconfig #556 --- .editorconfig | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..28d8209de --- /dev/null +++ b/.editorconfig @@ -0,0 +1,30 @@ +# top-most EditorConfig file +root = true + +# All Files +[*] +# Unix-style newlines with a newline ending every file +end_of_line = lf +insert_final_newline = true + +# Indent styling +indent_size = 4 +indent_style = space + +# Comments styling to add space after comment start +ij_any_block_comment_add_space = true +ij_any_line_comment_add_space = true + +# Max line length +max_line_length = 120 + +# Java Files +[*.java] +# Java files should not use wildcard imports +ij_java_names_count_to_use_import_on_demand = 999 +ij_java_class_count_to_use_import_on_demand = 999 + +[*.kt] +# Kotlin files should not use wildcard imports +ij_kotlin_name_count_to_use_star_import = 999 +ij_kotlin_name_count_to_use_star_import_for_members = 999 -- cgit