IntelliJ Idea Settings Dialyzer
(Kyung's Column)
Erlang Development uses the idea IDE to set external tool dialyzer, and then you can directly
Tools->external Tools, Dialyzer calls for code analysis.
The configuration method is:
File | Settings | Tools | External Tools
You need to add a parameter-r-r $ProjectFileDir $/ebin
Output Example:
Dialyzer-r D:\serversix/ebin
Checking whether the PLT C:\dailyzer_plt is up-to-date ... yes
Proceeding with analysis ...
B_pb.erl:81:guard Test Is_list (Records::tuple ()) can never succeed
B_pb.erl:85:guard Test Is_list (Records::tuple ()) can never succeed
B_pb.erl:90:guard Test Is_list (Records::tuple ()) can never succeed
Because the Dialyzer output has a lot of warnings, I'll save the output as Dialyzer_output.txt, add svn,
You only need to see the differences for each analysis and last analysis.
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
IntelliJ Idea Settings Dialyzer