Kotlin:在“.editorconfig”文件中抱怨“属性”disabled_rules“已弃用”

ogq8wdun  于 2023-10-23  发布在  Kotlin
关注(0)|答案(1)|浏览(129)

Kotlin新手。注意一堆

Property 'disabled_rules' is deprecated: Rename property 'disabled_rules' to 'ktlint_disabled_rules' in all '.editorconfig' files.

我没有一个'.editorconfig'文件下库根。
这是什么原因造成的?我应该自己生成一个.editorconfig文件吗?如果是这样,我如何生成它?
我通过从IDE

导出创建了.editorconfig
但是没有找到'disabled_rules',我应该如何以及在哪里将其添加到这个文件中?

db2dz4w8

db2dz4w81#

在我的情况下,我创建了.editorconfig自己的文件,它最初没有工作。
确保在IDE中启用EditorConfig支持。
对于Android Studio,它位于Settings → Editor → Code Style → Enable EditorConfig support。
在检查了这个之后,它为我工作。

相关问题