Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

alias lifting: bug when referring to nested module of an alias #151

Closed
novaugust opened this issue Apr 5, 2024 · 0 comments · Fixed by #153
Closed

alias lifting: bug when referring to nested module of an alias #151

novaugust opened this issue Apr 5, 2024 · 0 comments · Fixed by #153
Labels
bug Something isn't working

Comments

@novaugust
Copy link
Contributor

Versions

  • Elixir: use elixir --version
  • Styler: use mix deps | grep locked | grep styler

Example Input

# Given
alias Foo.Bar.Baz

Baz.Bop.Boom.wee()
Baz.Bop.Boom.wee()

# Get:
alias Baz.Bop.Boom
alias Foo.Bar.Baz

Boom.wee()
Boom.wee()

fix should be either writing the entire alias (Foo.Bar.Baz.Bop.Boom) or not lifting modules whose first element is an alias

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant