-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
36 lines (32 loc) · 999 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
35
36
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
max_line_length = 120
tab_width = 8
trim_trailing_whitespace = true
insert_final_newline = true
# IdeaJ
ij_any_align_consecutive_assignments = true
ij_any_align_multiline_assignment = true
ij_any_align_multiline_array_initializer_expression = true
ij_any_blank_lines_after_class_header = 1
ij_any_block_brace_style = end_of_line
ij_any_if_brace_force = if_multiline
ij_any_while_brace_force = if_multiline
ij_any_keep_blank_lines_before_right_brace = 1
ij_any_blank_lines_after_imports = 1
ij_any_blank_lines_around_class = 1
ij_any_blank_lines_around_method = 1
ij_any_spaces_within_braces = false
ij_any_method_call_chain_wrap = on_every_item
ij_any_align_multiline_parenthesized_expression = true
ij_any_align_multiline_binary_operation = true
[*.kt]
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL
ij_kotlin_import_nested_classes = true
ij_kotlin_extends_list_wrap = on_every_item
[*.yml]
indent_size = 2