Hello folks. This repository contains my own Detekt rules that born in result my work how developer. I am planning to add new rules in the future. You are welcome to contribute!
You have different options how you can add this set of rules to your project.
To use Maven Central repository, you should add link on mavenCentral()
in repositories block in build.gradle.kt
file
repositories {
mavenCentral()
}
In dependencies
block in build.gradle.kt
of module where you will use detekt add reference on library that points on
the latest version
detektPlugins("io.github.kiolk:kiolk-detekt-rules:1.0.4")
To use Jitpack, you should add link on jitpack in repositories block in build.gradle.kt
file
repositories {
maven { url 'https://jitpack.io' }
}
In dependencies
block in build.gradle.kt
of module where you will use detekt add reference on library that points on
the latest version
detektPlugins("com.github.Kiolk:Detekt-rules:v1.0.4")
If you want to use only locally, you should add path to jar
file on your local machine. Latest artifacts you can find
in release section of repository.
detektPlugins(files("local_path_to_artifact.jar"))
You can add this configuration of rule set to root detekt.yml
file for more custom configuration.
kiolk-detekt-rules:
active: true
UseInvokeForOperator:
active: true
autoCorrect: true #is false by default
If the class defines a function with name invoke and with keyword operator, it can execute this function by directly call with round brackets. This simplification makes code more readable. This rule detekt such cases and can replace it on direct call. It is applicable and for lambda functions.
When class defines operator invoke
fun someFunction() {
val classWithMethodeInvoke = ClassWithMethodeInvoke()
classWithMethodeInvoke.invoke()
}
When lambda expression execute
fun methodeWithNotNullableLambda(notNullableLambda: (() -> Unit)) {
notNullableLambda.invoke()
}
It does not trigger for nullable variable, because is not possible to call invoke without safety check
fun methodeWithNullableLambda(nullableLambda: (() -> Unit)?) {
nullableLambda?.invoke()
}
But triggers, if safety check is not necessary
fun methodeWithNotNullableLambdaButWithSaveCall(notNullableLambda: (() -> Unit)) {
notNullableLambda?.invoke()
}
Replaces invoke
on direct call.
Before
fun methodeWithNotNullableLambda(callback: (Int, String) -> Unit) {
callback.invoke(3, "string")
}
After
fun methodeWithNotNullableLambda(callback: (Int, String) -> Unit) {
callback(3, "string")
}