-
Notifications
You must be signed in to change notification settings - Fork 452
Closed
Labels
configurationAn issue/PR related to Dokka's configuration by the userAn issue/PR related to Dokka's configuration by the userenhancementAn issue for a feature or an overall improvementAn issue for a feature or an overall improvementrunner: Gradle pluginAn issue/PR related to Dokka's Gradle pluginAn issue/PR related to Dokka's Gradle plugintech-debtA technical issue that is not observable by the users, but improves maintainers quality of lifeA technical issue that is not observable by the users, but improves maintainers quality of life
Milestone
Description
Created this issue as discussed in #2513.
It would be great if the methods in Dokka Gradle plugin were converted to properties and also avoided double negative names.
So, for instance, noAndroidSdkLink.set(false)
can be renamed to something like useAndroidSdkLink = true
or isAndroidSdkLinkEnabled = true
or enableAndroidSdkLink = true
or similar.
As an example, here is some of Android Gradle Plugin (AGP) properties which were renamed in its recent versions:
android {
buildTypes {
release {
isTestCoverageEnabled = true
isMinifyEnabled = false
}
}
}
Are you willing to provide a PR?
Maybe (depends on if the maintainers want it and if I can).
IgnatBeresnev, EdricChan03, 3flex, denis-ismailaj, daymxn and 1 more
Metadata
Metadata
Assignees
Labels
configurationAn issue/PR related to Dokka's configuration by the userAn issue/PR related to Dokka's configuration by the userenhancementAn issue for a feature or an overall improvementAn issue for a feature or an overall improvementrunner: Gradle pluginAn issue/PR related to Dokka's Gradle pluginAn issue/PR related to Dokka's Gradle plugintech-debtA technical issue that is not observable by the users, but improves maintainers quality of lifeA technical issue that is not observable by the users, but improves maintainers quality of life