elixir-sqlite / exqlite

An SQLite3 driver for Elixir
https://hexdocs.pm/exqlite
MIT License
217 stars 48 forks source link

Correct typespecs #177

Closed reachfh closed 2 years ago

reachfh commented 2 years ago

This corrects the typespecs, making it work with Dialyzer.

You can add Dialyzer to the project itself in dev and test environments (but not prod) by adding this to deps():

{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false}

then run

mix dialyzer
reachfh commented 2 years ago

Updated branch