Anyone know if IDEA should be able to pick up defa...
# intellij
s
Anyone know if IDEA should be able to pick up default encoding for properties files from the Kotlin gradle project? We have this:
Copy code
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile.class){
    sourceCompatibility = JavaVersion.VERSION_1_9
    targetCompatibility = JavaVersion.VERSION_1_9

    kotlinOptions {
        jvmTarget = "1.9"
        allWarningsAsErrors = warningsAsErrors
    }
}
But IDEA still insists on using windows-1252 when editing properties files. (Apparently the default was changed to UTF-8 in Java 9)