Skip to content

Instantly share code, notes, and snippets.

@amadeu01
Created August 21, 2019 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amadeu01/7cfc340cdb7a55c2c92396633cfb5e58 to your computer and use it in GitHub Desktop.
Save amadeu01/7cfc340cdb7a55c2c92396633cfb5e58 to your computer and use it in GitHub Desktop.
Gradle config for ktlint
ktlint {
version = "0.34.0"
debug = true
verbose = true
android = false
outputToConsole = true
reporters = [ReporterType.CHECKSTYLE]
ignoreFailures = true
enableExperimentalRules = true
filter {
exclude("**/generated/**")
include("**/kotlin/**")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment