You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -200,30 +233,10 @@ private fun writeHtmlReport(
200
233
}
201
234
}
202
235
203
-
h1 { +"Unused direct dependencies" }
204
-
table {
205
-
unusedDepsWithTransitives.forEachIndexed { i, unusedDep ->
206
-
tr {
207
-
// TODO is valign="bottom" supported?
208
-
td { +"${i +1}" }
209
-
td {
210
-
strong { +unusedDep.identifier }
211
-
if (unusedDep.usedTransitiveDependencies.isNotEmpty()) {
212
-
p {
213
-
em { +"Used transitives" }
214
-
ul {
215
-
unusedDep.usedTransitiveDependencies.forEach {
216
-
li { +it }
217
-
}
218
-
}
219
-
}
220
-
}
221
-
}
222
-
}
223
-
}
224
-
}
225
-
226
236
h1 { +"Used transitive dependencies" }
237
+
p {
238
+
em { +"You should consider declaring these as direct dependencies" }
239
+
}
227
240
table {
228
241
tr {
229
242
td {}
@@ -246,6 +259,32 @@ private fun writeHtmlReport(
246
259
}
247
260
}
248
261
}
262
+
263
+
h1 { +"Unused direct dependencies" }
264
+
p {
265
+
em { +"You only use the transitive dependencies of these dependencies. In some cases, you can remove use of these and just declare the transitives directly. In other cases, you should continue to declare these. This report is provided for informational purposes." }
266
+
}
267
+
table {
268
+
unusedDepsWithTransitives.forEachIndexed { i, unusedDep ->
269
+
tr {
270
+
// TODO is valign="bottom" supported?
271
+
td { +"${i +1}" }
272
+
td {
273
+
strong { +unusedDep.identifier }
274
+
if (unusedDep.usedTransitiveDependencies.isNotEmpty()) {
0 commit comments