Reports unnecessary not-null operator usage (!!) that can be removed by the user.
val a = 1val b = a!!
val a = 1val b = a
The content on this page is adapted from the Detekt Docs. Copyright ©2022 The Detekt Team. All rights reserved. https://detekt.dev/comments.html