From d6cd52e369bd93d009f6269f89f11d9cc7f04a9b Mon Sep 17 00:00:00 2001 From: Jie Date: Sun, 5 Nov 2023 20:59:18 +0900 Subject: [PATCH] Add common Elm Analyzer comment: no `Debug` functions (#2291) --- analyzer-comments/elm/common/no_debug.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 analyzer-comments/elm/common/no_debug.md diff --git a/analyzer-comments/elm/common/no_debug.md b/analyzer-comments/elm/common/no_debug.md new file mode 100644 index 000000000..dc687e2df --- /dev/null +++ b/analyzer-comments/elm/common/no_debug.md @@ -0,0 +1,5 @@ +# no debug + +`Debug` functions (`Debug.todo`, `Debug.toString` and `Debug.log`) are very useful when developing, but they should never be shipped to production, published to a package, or be part of your final solution. + +Consider removing them before publishing your solution.