Detects usage of named arguments notation for dependencies when the GAV string notation could be used instead and offers a quick-fix to convert to it.
Example:
dependencies {
implementation(group = "org.gradle.api", name = "gradle", version = "1.0") // reports the argument list
}
After the quick-fix is applied:
dependencies {
implementation("org.gradle.api:gradle:1.0")
}
Best practice described here.