Fernando
08/22/2025, 3:25 PMChrimaeon
08/22/2025, 3:27 PMFernando
08/22/2025, 4:03 PM.jar
based on this docs I've tried it in two projects and.. Do I have to add that to every project that I open?
Also, I'm getting an error in all my composables about the naming having to be all lower case, shouldn't the new rules take care of that or do I need to remove the rule in my .editorconfig? 🤔Chrimaeon
08/22/2025, 4:12 PMDo I have to add that to every project that I open?yes both the plugin and the rules plugin need to be applied to each project individualy - not all projects that use ktlint are compose projects 😉
Also, I’m getting an error in all my composables about the naming having to be all lower case, shouldn’t the new rules take care of that or do I need to remove the rule in my .editorconfig?you need this in your `.editorconfig`:
ktlint_function_naming_ignore_when_annotated_with=Composable
see the Note in https://pinterest.github.io/ktlint/latest/rules/standard/#function-namingFernando
08/22/2025, 4:17 PM