blob: 5e0dd9ebeb4ec60b2c42e5570284da923ebe8d96 (
plain)
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
|
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
tab_width = 4
[*.gradle]
indent_style = tab
[*.java]
indent_style = tab
max_line_length = off
ij_continuation_indent_size = 8 # IntelliJ default
# Wrapping and Braces
ij_java_keep_simple_blocks_in_one_line = true
ij_java_keep_simple_classes_in_one_line = true
ij_java_keep_simple_lambdas_in_one_line = true
ij_java_keep_simple_methods_in_one_line = true
[*.{json,properties}]
indent_style = space
indent_size = 2
[.editorconfig]
indent_style = space
indent_size = 4
|