Skip to content

Commit

Permalink
fix: ignore any non-Elixir modules. (#60)
Browse files Browse the repository at this point in the history
Closes #43.
  • Loading branch information
jimsynz authored Jan 13, 2023
1 parent ada5d4a commit 4f41822
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/cli/cli.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ defmodule Doctor.CLI do
Project.config()
|> Keyword.get(:app)
|> get_application_modules()
|> Enum.filter(fn module -> String.starts_with?(to_string(module), "Elixir.") end)

# Fetch the module information from the list of application modules
|> Enum.map(&generate_module_entry/1)
Expand Down

0 comments on commit 4f41822

Please sign in to comment.