Add ktlint checking to :build-logic:plugins and split buildQa out into its own task for readability.

This commit is contained in:
Alex Hart
2023-03-03 13:26:42 -04:00
committed by Greyson Parrelli
parent c0aff46e31
commit c56564014b
2 changed files with 17 additions and 2 deletions

View File

@@ -26,3 +26,11 @@ dependencies {
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
implementation(files(testLibs.javaClass.superclass.protectionDomain.codeSource.location))
}
ktlint {
filter {
exclude { element ->
element.file.path.contains("/build/generated-sources")
}
}
}