Skip to content

Commit

Permalink
Exclude SPM checkouts form indexing, closes #809
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed Sep 15, 2024
1 parent 4563e8a commit 0f759fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Shared/Configuration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final class Configuration {
@Setting(key: "exclude_targets", defaultValue: [])
public var excludeTargets: [String]

@Setting(key: "index_exclude", defaultValue: ["**/*?.build/**/*"], requireDefaultValues: true)
@Setting(key: "index_exclude", defaultValue: ["**/*?.build/**/*", "**/SourcePackages/checkouts/**"], requireDefaultValues: true)
public var indexExclude: [String]

@Setting(key: "report_exclude", defaultValue: [])
Expand Down

1 comment on commit 0f759fd

@Lutzifer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thx!

Please sign in to comment.