elixir-analyzer
elixir-analyzer copied to clipboard
Given that the main focus of this exercise is to use erlang libaries, it feels strange to receive analyzer errors for the following two solutions: `random_ship_registry/0` (prompts to use `Enum.random/1`):...
```elixir defp print_charmap(charmap) do IO.inspect(charmap, label: "Your character") end def run() do with :ok The function run/0 should not explicitly return the result, but return whatever IO.inspect returns (which is...
When the elixir track on the exercise log level when submitted I have got what I think is a wrong automatic recommendation about snake_case. The details of the recommendations are:...
By just adding three lines in the `check_wrong_order()` function, one is able to allow for all combinations with `:defp` and `:defmacrop` at once. Since the nodes corresponding to different functions...
Common check for @doc and @spec order doesn't handle private functions or private macros correctly
I was working on the Name Badge exercise, where I decided to have a `@spec` for two private functions. In my editor, locally, I initially had a `@doc` and a...
Hi, I'd like to start off with saying I love this tool and the exercises. Now I've been using Elixir for a couple of years already and I'm kinda trying...
Hello I love your work. I am only just learning Elixir but wonder if the feedback given as Essential in this exercise might be incorrect in these circumstances. `Keyword lists...
Closes #296
Should we configure all tooling repos to automatically update Elixir deps with dependabot? - Analyzer uses: jason, credo, dialyzer - Test Runner uses: jason - Representer uses: nothing
As I mentor, I keep seeing some reoccurring problems with solutions that are exercise-independent and could, at least partially, be detected automatically. A code snippet from a real recent solution:...