Does inteliJ have a problem resolving plugin alias...
# intellij
a
Does inteliJ have a problem resolving plugin aliases from version catalogs? or do I have to enable some flags?? Command line seems fine. But
Copy code
plugins {
   alias(libs.plugins.greet)
}
libs
would be highlighted with '<declaration> can't be called in this context by implicit receiver. Use the explicit one if necessary'. Is there a WA?
s
It's a bug in IDEA. You can suppress it with
@Suppress("DSL_SCOPE_VIOLATION")
. https://github.com/nomisRev/ktor-arrow-example/blob/main/build.gradle.kts#L3
3
a
Thanks a lot. I'll suppress it for now