Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:Made some changes so that errors show up during ktlint pr review #79

Merged
merged 10 commits into from
Sep 5, 2024
Prev Previous commit
Next Next commit
Add ktlint and detekt as dependencies
andrewtavis authored and angrezichatterbox committed Sep 5, 2024
commit 74d84b404f00ef77d62d84e707fec91973b13974
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -6,14 +6,16 @@ buildscript {
repositories {
google()
jcenter()
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}

dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath "com.android.tools.build:gradle:8.5.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.6"
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.1"
}
}