Jie

Results 123 comments of Jie

You're right, it made sense for the CLI, not for the web editor. Quantifying differences... Mmh... Maybe it can be done? Maybe something like if the diff if more than...

I thought of a new check. Quite a few times when mentoring I saw code like this: ```elixir cond do something? -> :a true -> :b end ``` I think...

OMG yes, that's just plain wrong :)

How about a check that suggests `Enum.map_join` instead of `Enum.map(list, &something/1) |> Enum.join("\n")`?

Even if it's not perfect, the comment explicitly mentions what functions to use, so I think the message still works for this case. I will close the issue, but we...

TIL about `defdelegate` :) I wouldn't expect beginners to know about it either, but that doesn't mean it's cheating to use it. That being said, it might be a little...

Right, we didn't anticipate the use of helper functions. We also didn't anticipate the use of `with` since it's not been introduced yet. Do you get comments when you replace...

Thank you for the feedback! I see what's going on. Do we agree that `log_Label` is indeed not snake case because of the `L`? However, what the analyzer is proposing...

Nice! The culprit is here: https://github.com/exercism/elixir-analyzer/blob/9b380f6d115b67318d0930bf40672243921c93b6/lib/elixir_analyzer/exercise_test/common_checks/variable_names.ex#L71-L80 We might be able to get away with a `|> String.replace("__", "_")` to fix this particular problem, but maybe you can find something more...

@PQ4NOEH are you still interested in taking this one?