File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ subprojects {
5454 " ij_kotlin_imports_layout" ,
5555 " indent_size" ,
5656 " end_of_line" ,
57- " charset"
57+ " charset" ,
58+ " disabled_rules"
5859 )
5960
6061 kotlin {
@@ -67,8 +68,9 @@ subprojects {
6768 " end_of_line" to " lf" ,
6869 " charset" to " utf-8" ,
6970 " disabled_rules" to arrayOf(
70- " experimental:package-name" ,
71- " experimental:trailing-comma" ,
71+ " package-name" ,
72+ " trailing-comma" ,
73+ " filename" ,
7274 " experimental:type-parameter-list-spacing" ,
7375 ).joinToString(separator = " ," ),
7476 )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import org.gradle.kotlin.dsl.project
66import org.gradle.plugin.use.PluginDependenciesSpec
77import org.gradle.plugin.use.PluginDependencySpec
88
9- const val ktlintVersion = " 0.45.2 "
9+ const val ktlintVersion = " 0.46.1 "
1010const val kotlinVersion = " 1.7.10"
1111
1212object appConfig {
You can’t perform that action at this time.
0 commit comments