你如何告诉 android 中的 ktlint 排除项目中的特定路径?

How do you tell ktlint in android to exclude specific paths in the project?

目前,当我想格式化我的代码时,我 运行 在我的 android 工作室目录的终端中

https://github.com/pinterest/ktlint

./gradlew ktlintFormat

这个命令效果很好,但最近我在我的项目中添加了一些文件夹,其中的代码正在被 ktlintFormat 命令检查。我希望将这些文件夹排除在检查之外。有谁知道这是否可能?

ktlint {
    filter {
        exclude("**/generated/**")
        include("**/kotlin/**")
    }
}