We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7180e2c commit 0f59668Copy full SHA for 0f59668
1 file changed
Plugins/explicitDependencyImportCheckPlugin/ExplicitDependencyImportCheckPlugin.swift
@@ -40,7 +40,7 @@ extension ExplicitDependencyImportCheckPlugin {
40
) throws -> [Command] {
41
guard !transitiveDeps.isEmpty else { return [] }
42
43
- var transitiveDependenciesErrorText = "error: \(transitiveDeps.count) Transitive dependencies found for \(target.name) 🚨🚨🚨\n"
+ var transitiveDependenciesErrorText = "warning: \(transitiveDeps.count) Transitive dependencies found for \(target.name) 🚨🚨🚨\n"
44
transitiveDependenciesErrorText += transitiveDeps.map { "👉 \($0) is a transitive dependency" }
45
.joined(separator: "\n")
46
0 commit comments