https://github.com/truepadawan/ktlint-problems-plugin
Basic gradle plugin that implements the Problems API to show lint errors
https://github.com/truepadawan/ktlint-problems-plugin
Last synced: about 2 months ago
JSON representation
Basic gradle plugin that implements the Problems API to show lint errors
- Host: GitHub
- URL: https://github.com/truepadawan/ktlint-problems-plugin
- Owner: TruePadawan
- Created: 2025-03-22T17:16:27.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-22T17:48:21.000Z (about 1 year ago)
- Last Synced: 2025-03-22T18:26:57.816Z (about 1 year ago)
- Language: Kotlin
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KtLint Problems Plugin
A code sample that shows how Gradle's Problems API can be used to report problems and generate html reports. The project comprises a gradle plugin and a simple application for testing the plugin.
## Tasks
The plugin adds two tasks to the project it is applied to:
`ktlintCheck` - Runs the KtLint linter on all kotlin files in the project and reports any lint issue(s) found
`ktlintFormat` - Runs the KtLint formatter on all kotlin files in the project and reports any lint issue(s) it found before formatting