-
## Expected Behavior
Given a comment inside a lambda argument definition function-literal rule should not produce breaking changes.
## Steps to Reproduce
Example:
```
…
-
We should update ktlint to the latest version since it actually has some issues with Kotlin 1.4 (i.e. ``fun interface`` results in a ktlint failure that can't be worked around), but there are a lot of…
-
Since version 12.1.0 of your ktlint gradle plugin, my android build fails.
```
> Task :app:generateSomeCode FAILED
FAILURE: Build failed with an exception.
* What went wrong:
A problem was fo…
-
All the ktlint-specific overrides I have in my .editorconfig are underlined and show "the property is not supported." It would be nice if the plugin could recognize these overrides as legal, and even …
-
## Expected Rule behavior
```kt
// Should fail:
val foo: List = listOf()
val bar = listOf()
// Should pass:
val baz: List = emptyList()
val boo = emptyList()
val far = mutableListOf()
v…
-
We need to add the ktlint Compose ruleset as things are slipping through Detect. We also have to address new warnings that come up with the new ruleset.
-
## Expected Behavior
Rename to something that mentions ktlint.
Maybe "detekt-ktlint-wrapper" or "detekt-rules-ktlint"
## Current Behavior
It says detekt-formatting which doesn't make it that cle…
3flex updated
2 months ago
-
-
- 프로젝트 전체 코드 컨벤션 적용?
-
## Expected Behavior
Our Android project contains many class declarations that look like this:
```kotlin
class Foo @Inject constructor(
private val someDependency: SomeDependency,
…