kotlinter-gradle icon indicating copy to clipboard operation
kotlinter-gradle copied to clipboard

Painless, fast ktlint plugin for Gradle

Results 42 kotlinter-gradle issues
Sort by recently updated
recently updated
newest added

The groovy and kotlin examples for configuring tasks are labeled backwards, the one labeled kotlin is groovy and vice versa. Also for the kotlin example (incorrectly labeled as groovy) tasks.named...

The README for this project states that `kotlinter-gradle` automatically makes the `check` task dependent on the `lint` task. Is there a way to opt out of this behaviour? My team...

I tried running the pre-push hook with a simple change that should be auto-formatted by kotlinter. The change was to add an extra space after a line of code. I...

Version 2.0.0, Gradle 5.4.1. Just got this stacktrace while testing some changes. Not sure what to make of it. Build still passed. ``` > Task :lintKotlinAll Changing log factory java.lang.Throwable...

kotlinter-gradle has most of the wiring necessary for a pre-commit hook, but [it was disabled](https://github.com/jeremymailen/kotlinter-gradle/pull/137/#pullrequestreview-427739206) because it checks _all_ files, not just those that are part of the to-be-committed changeset....

enhancement

Hi, I'm wondering if it possible to run ```shell ./gradlew formatKotlin -Pfiles = {path to file} ``` or something like that. Thanks.

enhancement

Sort of related to #208 and #242 . Currently the exclude mechanism allow you to exclude paths, however those paths are still considered as part of the "task input" from...

Hi, I'm not sure i really understand incremental task. I integrate the plugging in my android app, in build.gradle.kts. If i just launch lintFormat the first time, all files will...

Now `ignoreFailures` property is defined in the `LintTask` and `FormatTask`. This property should be moved to `ConfigurableKtLintTask` and overridden in `LintTask` and `FormatTask`. Example: ```kotlin val ktlintCheck by tasks.registering(LintTask::class) {...

Hi there, I was trying to write a simple `pre-commit-config.yaml` like so ``` repos: - repo: local hooks: - id: formatKotlin name: formatting files using kolinter entry: ./gradlew formatKotlin language:...