Files
lawnchair/.editorconfig
renovate[bot] 90eb7cdde1 fix(deps): update dependency io.nlopez.compose.rules:ktlint to v0.4.28 (#6123)
* fix(deps): update dependency io.nlopez.compose.rules:ktlint to v0.4.28

* Ktlint 1.8.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Goooler <wangzongler@gmail.com>
2025-11-22 10:06:59 +08:00

33 lines
879 B
INI

root = true
[*]
charset = utf-8
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.java]
# Don't trim spaces in AOSP code.
trim_trailing_whitespace = false
[*.{kt,kts}]
ij_kotlin_imports_layout = *
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true
ij_kotlin_name_count_to_use_star_import = 999
ij_kotlin_name_count_to_use_star_import_for_members = 999
ij_kotlin_packages_to_use_import_on_demand = unset
ktlint_code_style = intellij_idea
ktlint_function_naming_ignore_when_annotated_with = Composable
ktlint_standard_discouraged-comment-location = disabled
ktlint_standard_function-expression-body = disabled
ktlint_standard_mixed-condition-operators = disabled
ktlint_compose_lambda-param-event-trailing = disabled
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2