Skip to content

Commit

Permalink
docs: remove incorrect formatter import_deps (#262)
Browse files Browse the repository at this point in the history
:ash_phoenix should not be added to the formatter import_deps, as it
does nothing.
  • Loading branch information
aidalgol authored Nov 1, 2024
1 parent ff775fa commit 29adf29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ We now need to add Ash, AshPhoenix and AshPostgres to our Phoenix project. We ne
end
```

Add `:ash`, `:ash_phoenix`, and `:ash_postgres` to your `.formatter.exs` file.
Add `:ash` and `:ash_postgres` to your `.formatter.exs` file.

```elixir
# .formatter.exs
[
import_deps: [..., :ash, :ash_phoenix, :ash_postgres],
import_deps: [..., :ash, :ash_postgres],
...
]
```
Expand Down

0 comments on commit 29adf29

Please sign in to comment.