2021-04-08 19:22:11 +02:00
|
|
|
# http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
continuation_indent_size = 8
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[*.java]
|
|
|
|
indent_style = tab
|
2021-05-03 18:25:57 +02:00
|
|
|
ij_continuation_indent_size = 8
|
2021-04-08 19:22:11 +02:00
|
|
|
ij_java_class_count_to_use_import_on_demand = 99
|
|
|
|
ij_java_names_count_to_use_import_on_demand = 99
|
2021-05-03 18:25:57 +02:00
|
|
|
ij_java_imports_layout = $*,|,java.**,|,javax.**,|,org.**,|,com.**,|,*
|