-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.editorconfig
43 lines (36 loc) · 1.05 KB
/
.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
35
36
37
38
39
40
41
42
43
# EditorConfig is awesome: http://EditorConfig.org
# Uses editorconfig to maintain consistent coding styles
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 200
tab_width = 4
[*.md]
trim_trailing_whitespace = false
[*.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_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
[*.json]
insert_final_newline = false
[*.xml]
indent_size = 4
ij_xml_tab_width = 4
# Shell scripts
[*.{cmd, bat}]
end_of_line = crlf