Skip to content

Alphabetizes alias, require, use at the top of an elixir file

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

mkaplan9/elixir-alphabetize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elixir-alphabetize

Alphabetizes alias, require, use, and import statements at the top of an elixir file

Packages -> elixir-alphabetize -> Beautify

Example

defmodule MyApp.MyController do
  import MyThing
  use MyOtherThing
  alias MyApp.User
  alias MyApp.Organization
  @moduledoc """
  """

becomes

defmodule MyApp.MyController do
  alias MyApp.Organization
  alias MyApp.User
  import MyThing
  use MyOtherThing
  @moduledoc """
  """

About

Alphabetizes alias, require, use at the top of an elixir file

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published