-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
40 lines (34 loc) · 1.06 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
# EditorConfig is awesome: https://EditorConfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
max_line_length = 120
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
ij_continuation_indent_size = 4
[*.{java,kt}]
indent_size = 4
ij_continuation_indent_size = 8
ij_java_class_count_to_use_import_on_demand = 99
ij_java_names_count_to_use_import_on_demand = 99
ij_java_keep_blank_lines_in_code = 1
ij_java_keep_blank_lines_in_declarations = 1
ij_java_keep_blank_lines_before_right_brace = 1
ij_java_keep_blank_lines_between_package_declaration_and_header = 1
ij_java_packages_to_use_import_on_demand = $org.junit.jupiter.api.Assertions.**, $java.lang.annotation.**
[*.groovy]
indent_size = 4
ij_groovy_keep_blank_lines_before_right_brace = 1
ij_groovy_keep_blank_lines_in_code = 1
ij_groovy_keep_blank_lines_in_declarations = 1
ij_groovy_class_count_to_use_import_on_demand = 99
ij_groovy_names_count_to_use_import_on_demand = 99
[*.bat]
end_of_line = crlf
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab