-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
44 lines (36 loc) · 1.04 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
44
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120
tab_width = 4
ij_continuation_indent_size = 8
[{*.bat,*.cmd}]
end_of_line = crlf
[{*.kt,*.kts}]
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL
ij_kotlin_import_nested_classes = true
ij_kotlin_imports_layout = *, java.**, javax.**, kotlin.**, ^
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true
ij_kotlin_name_count_to_use_star_import = 2147483647
ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
[{*.markdown,*.md}]
trim_trailing_whitespace = false
[{*.yaml,*.yml}]
indent_size = 2
[*.json]
indent_size = 2
ij_continuation_indent_size = 2
[{*.bash,*.sh,*.zsh}]
indent_size = 2
tab_width = 2
[*.java]
# Doc: https://youtrack.jetbrains.com/issue/IDEA-170643#focus=streamItem-27-3708697.0-0
ij_java_imports_layout = *,|,javax.**,|,java.**,|,$*
ij_java_use_single_class_imports = true
ij_java_names_count_to_use_import_on_demand = 2147483647