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
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,26 @@ Repository of custom scalafix rules for Iterable projects.
4
4
5
5
## Usage
6
6
7
-
See the tags on this repo to find the the latest version or the version you want to use. You can use the rules in your project by adding a dependency to the `scalafix-rules` artifact:
7
+
You can use the rules in your project by adding a dependency on your preferred version of [the `scalafix-rules` artifact](https://mvnrepository.com/artifact/com.iterable/scalafix-rules):
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` in your Scala code, to prevent a potentially unbounded number of concurrent tasks from being run at once.
25
27
26
28
```hocon
27
29
rules = [
@@ -30,6 +32,6 @@ rules = [
30
32
]
31
33
32
34
NoFutureTraverse {
33
-
isError = true # Whether to treat violations as errors (default: true)
35
+
isError = true # Whether to treat violations as errors (default: false)
0 commit comments