diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-29 07:29:46 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-29 08:00:28 +0530 |
commit | fd20480f554060805acba3124cb251be7824c4d2 (patch) | |
tree | 5632081000dd955d51c04397733b0faeabd16b04 /build.gradle.kts | |
parent | 505c2fa705fca1aaec7aae80c50a939bfd607716 (diff) |
feat(build): add a homebrew ktfmt plugin
The general idea of the implementation is borrowed from https://github.com/cortinico/ktfmt-gradle
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 0ad75cd6..17725b88 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,8 +5,9 @@ @file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage") plugins { - id("com.github.android-password-store.kotlin-common") id("com.github.android-password-store.git-hooks") + id("com.github.android-password-store.kotlin-common") + id("com.github.android-password-store.ktfmt") id("com.github.android-password-store.spotless") id("com.github.android-password-store.versions") alias(libs.plugins.hilt) apply false |