Adds two experimental refactoring features as mix tasks.
mix styler.remove_unused
With Elixir 1.20 on the horizon, many projects are about to discover that they have a lot of unnecessary require Logger lines throughout their codebase.
mix styler.remove_unused will automate the removal of those unused require: statements, alongside any unused import: and unused alias: wa...