Gradient is a gradual typechecker for Elixir.
Gradual typing is a bit like static typing, because it provides error messages if your code has types and specs - and any errors, obviously. Gradual typing is also a bit like dynamic typing, because it doesn't require all the functions to have specs and just agrees when you say: "Trust me, I'm a (software) engineer!"
Gradient relies on Gradualizer as the actual typechecker, but aims to make jumping the hoops between your Elixir code and the Erlang abstract syntax tree that Gradualizer works on effortless.
Gradient can be installed by adding gradient
to your list of dependencies in mix.exs
:
def deps do
[
{:gradient, github: "esl/gradient", only: [:dev], runtime: false}
]
end
Gradient comes with a Mix task that runs the typechecker on an Elixir project:
mix gradient
And presents errors in Elixir syntax.
Here is an example with some errors:
And here is an example of an application that has no issues:
Also, did we mention the analysis process is lightning fast?
The examples/
folder contains example applications showing how the produced error messages look like.
It's possible to ignore specific warnings by adding a .gradient_ignore.exs
in a project root folder.
.gradient_ignore.exs
should contain a list of ignore rules:
[
# Ignores all errors in a file
"lib/ecto/changeset.ex",
# Ignores errors in a specific line in a file
"lib/ecto/schema.ex:55",
# Ignores all files that match a regex
~r|lib/ecto/.*|,
# Ignores an error kind in a file
{"lib/ecto/changeset.ex", {:spec_error, :no_spec}},
# Ignores an error kind in a specific line
{"lib/ecto/changeset.ex:55", {:spec_error, :no_spec}},
# Ignores an error kind in all files
{:spec_error, :no_spec}
]
Gradient is experimental! Please use it and let us know how it feels. We're especially looking for code snippets where it doesn't work the way you'd expect it to, together with an explanation of what's happening and what's expected. Together, we can make it robust and convenient to work with, so that we all feel more productive!