Skip to content

Instantly share code, notes, and snippets.

@Barros9
Created April 30, 2022 13:15
Show Gist options
  • Save Barros9/a97f11d5c6009bff39598209f415aa23 to your computer and use it in GitHub Desktop.
Save Barros9/a97f11d5c6009bff39598209f415aa23 to your computer and use it in GitHub Desktop.
Gradle task pre commit ktlintCheck
task installGitHook(type: Copy) {
from new File(rootProject.rootDir, 'githook/pre-commit')
into { new File(rootProject.rootDir, '../.git/hooks') }
fileMode 0777
}
tasks.getByPath(':app:preBuild').dependsOn installGitHook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment