Skip to content

Commit

Permalink
git- and rat-ignore - add build-logic/.kotlin/ (#678)
Browse files Browse the repository at this point in the history
The `.kotlin/` directory is a temporary directory used internally by Kotlin compilations. The contents of that directory don't matter.
  • Loading branch information
snazy authored Jan 10, 2025
1 parent 76d1957 commit ae5f134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ gradle/wrapper/gradle-wrapper-*.sha256
# Gradle
/.gradle
/build-logic/.gradle
/build-logic/.kotlin
**/build/
!src/**/build/

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ tasks.named<RatTask>("rat").configure {
excludes.add("**/go.sum")

excludes.add("**/kotlin-compiler*")
excludes.add("**/build-logic/.kotlin/errors/*")
excludes.add("**/build-logic/.kotlin/**")
}

// Pass environment variables:
Expand Down

0 comments on commit ae5f134

Please sign in to comment.