-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
34 lines (30 loc) · 904 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = false
trim_trailing_whitespace = true
max_line_length = 200
tab_width = 4
[*.java]
# don't use wildcard for Java imports
wildcard_import_limit = 999
ij_visual_guides = 120
ij_wrap_on_typing = true
ij_java_binary_operation_sign_on_next_line = true
ij_java_align_multiline_chained_methods = true
ij_java_align_multiline_ternary_operation = true
ij_java_align_multiline_array_initializer_expression = true
ij_java_use_single_class_imports = true
ij_java_class_count_to_use_import_on_demand = 999
ij_java_names_count_to_use_import_on_demand = 999
ij_java_imports_layout = *, |, java.**, |, javax.**, |, io.**, |, org.**, |, lombok.**, |, com.**, |, $*
ij_java_layout_static_imports_separately = true
[*.xml]
indent_size = 4
ij_xml_tab_width = 4
# Shell scripts
[*.{cmd, bat}]
end_of_line = crlf