diff --git a/analyzer-comments/elm/strain/do_not_use_filter.md b/analyzer-comments/elm/strain/do_not_use_filter.md new file mode 100644 index 000000000..c90ae146b --- /dev/null +++ b/analyzer-comments/elm/strain/do_not_use_filter.md @@ -0,0 +1,3 @@ +# do not use filter + +As the instructions mention, you should implement `keep` and `discard` without the use of `List.filter` or `List.filterMap`. Instead, you could use recursion or other `List` functions.