-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
64 lines (59 loc) · 2.11 KB
/
.editorconfig
File metadata and controls
64 lines (59 loc) · 2.11 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Editor configuration, see http://editorconfig.org
root = true
[*]
charset = utf-8
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.java]
# IntelliJ guide: https://www.jetbrains.com/help/idea/configuring-code-style.html#editorconfig
# braces on new line instead of end of line
indent_size = 4
max_line_length = 100
ij_java_block_brace_style = next_line
ij_java_class_brace_style = next_line
ij_java_method_brace_style = next_line
ij_java_lambda_brace_style = end_of_line
ij_java_test_name_suffix = Test
ij_java_prefer_longer_names = true
ij_java_line_comment_at_first_column = true
ij_java_line_comment_add_space = false
ij_java_layout_static_imports_separately = true
ij_java_block_comment_at_first_column = false
ij_java_array_initializer_new_line_after_left_brace = true
ij_java_do_not_wrap_after_single_annotation = false
ij_java_annotation_parameter_wrap = normal
ij_java_align_multiline_annotation_parameters = false
ij_java_array_initializer_wrap = off
ij_java_assert_statement_wrap = normal
ij_java_assignment_wrap = normal
ij_java_binary_operation_wrap = normal
ij_java_call_parameters_wrap = normal
ij_java_catch_on_new_line = false
ij_java_class_annotation_wrap = normal
ij_java_enum_constants_wrap = normal
ij_java_extends_keyword_wrap = normal
ij_java_extends_list_wrap = normal
ij_java_field_annotation_wrap = normal
ij_java_for_statement_wrap = normal
ij_java_method_annotation_wrap = normal
ij_java_method_call_chain_wrap = normal
ij_java_method_parameters_wrap = normal
ij_java_parameter_annotation_wrap = off
ij_java_record_components_wrap = normal
ij_java_resource_list_wrap = normal
ij_java_ternary_operation_wrap = normal
ij_java_throws_keyword_wrap = normal
ij_java_throws_list_wrap = normal
ij_java_variable_annotation_wrap = normal
ij_java_wrap_first_method_in_call_chain = false
ij_java_wrap_long_lines = false
ij_java_wrap_comments = false
ij_java_prefer_parameters_wrap = false
ij_java_modifier_list_wrap = false
[*.html]
indent_size = 4
ij_html_do_not_indent_children_of_tags = temp
ij_html_keep_whitespaces_inside = span,pre,textarea,br
ij_html_space_inside_empty_tag = true