What problem does it solve? Kotlin/KMP code that fails ktlintCheck generates hundreds of formatting errors in every Pull Request, blocking commits and creating noisy diffs. This Skill ensures generated or modified Kotlin code follows Ktlint rules from the first attempt. ## Core Features & Use Cases - Import Management: Removes unused imports, replaces wildcard imports with explicit ones, and orders imports lexicographically. - Formatting Rules: Applies trailing commas, multiline expression placement, parameter-per-line layout, blank line rules, and class body spacing. - Compose Naming Exception: Preserves PascalCase for @Composable UI functions and guides .editorconfig configuration instead of incorrectly renaming them. - Use Case: After generating a new LoginScreen composable and its ViewModel, run this Skill to fix all Ktlint violations before opening the Pull Request so ktlintCheck passes cleanly. ## Quick Start Review my Kotlin files and fix all Ktlint errors so that ./gradlew ktlintCheck passes without changing any functional behavior.