Is ther a way to get rid of all the @UseExperiment...
# announcements
c
Is ther a way to get rid of all the @UseExperimental like declarations, wasn't there a way to just specify this to the compiler via gradle?
s
Copy code
compileKotlin {
    kotlinOptions {
        freeCompilerArgs += ["-Xuse-experimental=io.ktor.locations.KtorExperimentalLocationsAPI,io.ktor.util.KtorExperimentalAPI"]
    }
}
c
thx
do you know how to disable IntelliJ signaling this with a gray underline?
s
only
kotlinOptions
is underlined for me.. have no idea what it means
c
these warnings:
they pop all the time, it's line an ispection
but i can't disable it in the IDE, apparently