svilen
Author of Concurrent Data Processing in Elixir
Mix format skip Ecto.Query.from/2 parens
I’m quite happy with the new mix format task, except for my Ecto queries 
Currently mix format would convert
query = from u in User, where: is_nil(u.team_id)
to
query =
from(u in User, where: is_nil(u.team_id))
and I’d like it to be
query =
from u in User, where: is_nil(u.team_id)
I looked at the docs, and there’s an option to make the formatter skip some parens, but I’m either doing it wrong or it’s not meant to work with 3rd party libs. Here’s my .formatter.exs:
[
inputs: [
"mix.exs",
"{config,lib,test}/**/*.{ex,exs}"
],
export: [
locals_without_parens: [from: 2]
]
]
Any ideas, anyone? Thanks!
Marked As Solved
wojtekmach
Hex Core Team
:export is meant to configure formatter for projects depending on your project, not for your project itself.
Change to the following and you should be good to go:
[
inputs: [
"mix.exs",
"{config,lib,test}/**/*.{ex,exs}"
],
locals_without_parens: [from: 2]
]
When Ecto adopts .formatter.exs and exports the settings, you’ll be able to import them with import_deps: [:ecto] (https://hexdocs.pm/mix/Mix.Tasks.Format.html#module-importing-dependencies-configuration)
3
Popular in Questions
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1]
15:22:35.803 [error] gen_event {lager_file_backend...
New
In Ruby, I can go:
User.find_by(email: "foobar@email.com").update(email: "hello@email.com")
How can I do something similar in Elixir? ...
New
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
I have an umbrella app.
Some of the apps inside depend on other apps in the umbrella, unsurprisingly.
I'm writing a test for one of t...
New
Hello everybody,
usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
Hey all,
I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
Hi,
I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
Other popular topics
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this:
...
New
I am trying to figure out how Mix knows whether the environment is test, dev, or prod -- where is this set?
Thanks.
New
Hi,
I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch.
This project took far...
New
Is there a way to get the call stack or stack trace at any point in the code? Not from exceptions, but an expression that returns how the...
New
Hi,
I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
I have a super simple question about elixir - how would I take a file like this
foo bar baz
and output a new file that enumerates th...
New
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New







