-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
42 lines (35 loc) · 986 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
[*]
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
[LICENSE]
max_line_length = off
[README.md]
indent_size = 2
max_line_length = off
[.editorconfig]
max_line_length = off
[*.toml]
max_line_length = off
indent_size = 2
[*.{json,yml,xml}]
indent_size = 2
# noinspection EditorConfigKeyCorrectness
[*.{kt,kts}]
ktlint_code_style = android_studio
ktlint_standard_filename = disabled
ktlint_standard_annotation = disabled
ktlint_standard_function-naming = disabled
ktlint_standard_multiline-if-else = disabled
ij_formatter_tags_enabled = true
ij_kotlin_imports_layout = *
ij_kotlin_allow_trailing_comma = false
ij_kotlin_allow_trailing_comma_on_call_site = false
ij_kotlin_name_count_to_use_star_import = 10
ij_kotlin_name_count_to_use_star_import_for_members = 10
ij_kotlin_packages_to_use_import_on_demand = kotlin.test.*,kotlinx.cinterop.*,net.libtom.libtommath.*