For any maintainers: do you plan to allow <Formatt...
# ktfmt
p
For any maintainers: do you plan to allow FormattingOptions.maxWidth to be overridden by IDE settings? We're overriding this setting in Gradle like:
Copy code
spotless {
    kotlin {
        ktfmt("0.40").kotlinlangStyle().configure { optionsConfiguration ->
            optionsConfiguration.setMaxWidth(120)
        }
    }
}
And we'd like our IDEs to behave the same.