Packages

Collection of useful data types brought to Elixir from other functional languages.

Current section

Files

Jump to
fe Makefile
Raw

Makefile

.PHONY: check deps format test
check: test format
mix dialyzer
deps:
mix deps.get
format:
mix format --check-formatted
test:
mix test