Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ The following section are automatically applied by the code formatter in Elixir
### Modules

* <a name="module-layout"></a>
Use a consistent structure when calling `use`/`import`/`alias`/`require`: call them in this order and group multiple calls to each of them.
Use a consistent structure when calling `use`/`import`/`alias`/`require`: call them in this order, group multiple calls to each of them and sort them alphabetically.
<sup>[[link](#module-layout)]</sup>

```elixir
Expand All @@ -307,8 +307,8 @@ The following section are automatically applied by the code formatter in Elixir
import Bitwise
import Kernel, except: [length: 1]

alias Mix.Utils
alias MapSet, as: Set
alias Mix.Utils

require Logger
```
Expand Down