Reproducer sample for pinterest/ktlint#2343
- Clone the project.
- Run
./gradlew :compileKotlin
and see it succeed. - Run
./gradlew :ktlintCheck
and see it fail with:
> Task :ktlintMainSourceSetCheck FAILED
<path-to-project>/src/main/kotlin/com/github/erdi/ktlint/bug/ExamplePlugin.kt:5:1 Unused import
- Remove
import org.gradle.kotlin.dsl.assign
line from<path-to-project>/src/main/kotlin/com/github/erdi/ktlint/bug/ExamplePlugin.kt:5
- Run
./gradlew :ktlintCheck
and see it pass. - Run
./gradlew :compileKotlin
and see it fail with:
e: file:///<path-to-project>/src/main/kotlin/com/github/erdi/ktlint/bug/ExamplePlugin.kt:11:9 Val cannot be reassigned