Recode.Task.LocalsWithoutParens (Recode v0.8.0)
View SourceDon't use parens for functions that don't need them.
# preferred
assert true == true
# not preferred
assert(true == true)The task uses the :locals_without_parens from the formatter config in .formatter.exs.
See also: "Importing-dependencies-configuration"
in the docs for mix format.
This task rewrites the code when mix recode runs with autocorrect: true.