forked from SDKForge/template-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
25 lines (20 loc) · 796 Bytes
/
.editorconfig
File metadata and controls
25 lines (20 loc) · 796 Bytes
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
[.editorconfig]
ij_editorconfig_space_after_comma = false
# kotlin rules
[*.{kt,kts}]
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 140
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true
ij_kotlin_imports_layout = *,^
ij_kotlin_packages_to_use_import_on_demand = java.util.*
ij_kotlin_name_count_to_use_star_import = 2147483647
ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
# ktlint rules
ktlint_code_style = android_studio
ktlint_standard_no-unused-imports = enabled
# disable ktlint_standard_function-naming rule for @Composable functions
ktlint_function_naming_ignore_when_annotated_with = Composable
ktlint_function_signature_rule_force_multiline_when_parameter_count_greater_or_equal_than = 1