why isn't that a default in gradle? I had to add a...
# gradle
b
why isn't that a default in gradle? I had to add an idea-ext plugin and figure out how to make its DSL work in build.gradle.kts
g
It's not a gradle feature, it's IDE feature, you don't need idea-ext plugin, it can be enabled just in IDE, but to make this config a part of Gradle config, you can use idea-ext, so everyone who works with your project will get those ide settings
b
Oh that makes more sense. Thanks.