├── .formatter.exs ├── .gitignore ├── .travis.yml ├── CONTRIBUTING ├── LICENSE ├── NOTICE ├── README.md ├── config └── config.exs ├── lib └── mix │ └── tasks │ ├── dialyzer.clean.ex │ └── dialyzer.ex ├── mix.exs ├── mix.lock └── test ├── dialyzex_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/mix/tasks/dialyzer.clean.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/lib/mix/tasks/dialyzer.clean.ex -------------------------------------------------------------------------------- /lib/mix/tasks/dialyzer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/lib/mix/tasks/dialyzer.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/mix.lock -------------------------------------------------------------------------------- /test/dialyzex_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/test/dialyzex_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comcast/dialyzex/HEAD/test/test_helper.exs --------------------------------------------------------------------------------