Created
October 4, 2019 01:01
-
-
Save amadeu01/dfc5c95feca7828713e7c9f24c7819c2 to your computer and use it in GitHub Desktop.
ktlint plug-in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id "kotlin" | |
id 'application' | |
id "org.jlleitschuh.gradle.ktlint" version "$ktlint_plugin_version" | |
} | |
ktlint { | |
version = "$ktlint_version" | |
debug = false | |
verbose = false | |
android = false | |
outputToConsole = true | |
reporters = [ReporterType.JSON] | |
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