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 {
54
54
" ij_kotlin_imports_layout" ,
55
55
" indent_size" ,
56
56
" end_of_line" ,
57
- " charset"
57
+ " charset" ,
58
+ " disabled_rules"
58
59
)
59
60
60
61
kotlin {
@@ -67,8 +68,9 @@ subprojects {
67
68
" end_of_line" to " lf" ,
68
69
" charset" to " utf-8" ,
69
70
" disabled_rules" to arrayOf(
70
- " experimental:package-name" ,
71
- " experimental:trailing-comma" ,
71
+ " package-name" ,
72
+ " trailing-comma" ,
73
+ " filename" ,
72
74
" experimental:type-parameter-list-spacing" ,
73
75
).joinToString(separator = " ," ),
74
76
)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import org.gradle.kotlin.dsl.project
6
6
import org.gradle.plugin.use.PluginDependenciesSpec
7
7
import org.gradle.plugin.use.PluginDependencySpec
8
8
9
- const val ktlintVersion = " 0.45.2 "
9
+ const val ktlintVersion = " 0.46.1 "
10
10
const val kotlinVersion = " 1.7.10"
11
11
12
12
object appConfig {
You can’t perform that action at this time.
0 commit comments