-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
42 lines (33 loc) · 869 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
37
38
39
40
41
42
root = true
# Keep in sync with config/detekt.yml
[*]
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 = 199
ij_kotlin_name_count_to_use_star_import_for_members = 199
[{*.markdown,*.md}]
trim_trailing_whitespace = false
[{*.yaml,*.yml}]
indent_size = 2
[*.xml]
ij_continuation_indent_size = 4
[{*.bash,*.sh,*.zsh}]
indent_size = 2
tab_width = 2
[{Makefile, *.mk}]
indent_style = tab