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
Warns against or disallows the use of `Future.traverse` in your Scala code, to prevent a potentially unbounded number of concurrent tasks from being run at once.
26
+
Warns against or disallows the use of `Future.traverse`and `Future.sequence`in your Scala code, to prevent a potentially unbounded number of concurrent tasks from being run at once.
27
27
28
28
```hocon
29
29
rules = [
@@ -32,6 +32,7 @@ rules = [
32
32
]
33
33
34
34
NoFutureTraverse {
35
-
isError = true # Whether to treat violations as errors (default: false)
35
+
isError = false # Whether to treat violations as errors (default: false)
36
+
extraMessage = null # Additional deprecation message. Can be used to suggest an alternative.
0 commit comments