Navigation Menu

Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Commit

Permalink
Update Use of Dialyzer in README (#713) 📑
Browse files Browse the repository at this point in the history
📄 There is no longer a task for `mix dialyzer.plt`. The PLT is now built
by the process which runs with the `mix dialyzer` task. This change
removes the note from the README file to run `mix dialyzer.plt`.

🙈 The latest run of `mix dialyzer` created a new local file named
`.dialyzer.plt.hash`. This change adds the file to `.gitignore`.
  • Loading branch information
stratigos committed Sep 12, 2019
1 parent f0112e8 commit 7ba81a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -20,6 +20,7 @@ npm-debug.log
*.sublime-workspace
*.sublime-project
.dialyzer.plt
.dialyzer.plt.hash

screenshots
/config/*.secret.exs
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -76,9 +76,9 @@ Run `mix test`

## Static Analysis

Run `mix dialyzer.plt` to build the lookup table for static analysis. Then run
`mix dialyzer` to run analysis. If your dependencies or your elixir version
change, delete `.dialyzer.plt` and run `mix dialyzer.plt` to rebuild it.
Run `mix dialyzer` to run the analysis. The lookup table will be created by this
process. If your dependencies or your elixir version change, delete
`.dialyzer.plt` and run `mix dialyzer.plt` to rebuild it.

There are still a lot of warnings that are not fixable, but occasionally some
real errors are found by dialyzer
Expand Down

0 comments on commit 7ba81a9

Please sign in to comment.