From b78698e0cd46f6c788a3ec694fe1de6cd801860e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gillet?= Date: Mon, 21 Feb 2022 22:54:05 +0900 Subject: [PATCH 1/3] Add Elm Analyzer comment for `strain` --- analyzer-comments/elm/strain/do_not_user_filter.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 analyzer-comments/elm/strain/do_not_user_filter.md diff --git a/analyzer-comments/elm/strain/do_not_user_filter.md b/analyzer-comments/elm/strain/do_not_user_filter.md new file mode 100644 index 000000000..c90ae146b --- /dev/null +++ b/analyzer-comments/elm/strain/do_not_user_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. From b57e01e782322b4eb9c789fbd75fbfb38949296c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gillet?= Date: Tue, 22 Feb 2022 10:26:12 +0900 Subject: [PATCH 2/3] wrong file name --- analyzer-comments/elm/strain/do_not_use_filter.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 analyzer-comments/elm/strain/do_not_use_filter.md 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. From dcb9f77476d87c51758a9da3b445014d89bee345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gillet?= Date: Tue, 22 Feb 2022 10:26:52 +0900 Subject: [PATCH 3/3] remove wrong file --- analyzer-comments/elm/strain/do_not_user_filter.md | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 analyzer-comments/elm/strain/do_not_user_filter.md diff --git a/analyzer-comments/elm/strain/do_not_user_filter.md b/analyzer-comments/elm/strain/do_not_user_filter.md deleted file mode 100644 index c90ae146b..000000000 --- a/analyzer-comments/elm/strain/do_not_user_filter.md +++ /dev/null @@ -1,3 +0,0 @@ -# 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.