使用Klint格式化代码
ktlint 是一款用来检查Kotlin代码风格的工具,在Android Studio 中可以使用 spotless。
在 project 下的build.gradle 中:
buildscript {
// Define versions in a single place
ext {
// Sdk and tools
ktlintVersion = '0.33.0'
}
}
plugins {
id "com.diffplug.gradle.spotless" version "4.3.0"
}
spotless {
kotlin {
target "**/*.kt"
ktlint(ktlintVersion).userData(['max_line_length' : '100'])
}
}
设置好后,在控制台输入
gradlew build
如果有错误的话,就会出现提示,然后再次输入命令:
gradlew :spotlessApply
即可修复。