diff options
| -rw-r--r-- | .editorconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5e0dd9eb --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +tab_width = 4 + +[*.gradle] +indent_style = tab + +[*.java] +indent_style = tab +max_line_length = off +ij_continuation_indent_size = 8 # IntelliJ default +# Wrapping and Braces +ij_java_keep_simple_blocks_in_one_line = true +ij_java_keep_simple_classes_in_one_line = true +ij_java_keep_simple_lambdas_in_one_line = true +ij_java_keep_simple_methods_in_one_line = true + +[*.{json,properties}] +indent_style = space +indent_size = 2 + +[.editorconfig] +indent_style = space +indent_size = 4 |
