NamedArguments: don't count trailing lambda argument (#5002)

This commit is contained in:
Toshiaki Kameyama
2022-06-28 18:43:31 +09:00
committed by GitHub
parent 5ff82e1131
commit 5d6ee2f43e
2 changed files with 14 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ class NamedArguments(config: Config = Config.empty) : Rule(config) {
Debt.FIVE_MINS
)
@Configuration("number of parameters that triggers this inspection")
@Configuration("number of arguments that triggers this inspection")
private val threshold: Int by config(defaultValue = 3)
@Configuration("ignores when argument values are the same as the parameter names")
@@ -50,7 +50,7 @@ class NamedArguments(config: Config = Config.empty) : Rule(config) {
override fun visitCallExpression(expression: KtCallExpression) {
if (bindingContext == BindingContext.EMPTY) return
val valueArguments = expression.valueArguments
val valueArguments = expression.valueArguments.filterNot { it is KtLambdaArgument }
if (valueArguments.size > threshold && expression.canNameArguments()) {
val message = "This function call has ${valueArguments.size} arguments. To call a function with more " +
"than $threshold arguments you should set the name of each argument."

View File

@@ -196,6 +196,18 @@ class NamedArgumentsSpec(val env: KotlinCoreEnvironment) {
val findings = subject.compileAndLintWithContext(env, code)
assertThat(findings).hasSize(1)
}
@Test
fun `does not count lambda argument`() {
val code = """
fun test(n: Int) {
require(n == 2) { "N is not 2" }
}
"""
val subject = NamedArguments(TestConfig(mapOf("threshold" to 1)))
val findings = subject.compileAndLintWithContext(env, code)
assertThat(findings).hasSize(0)
}
}
@Nested