Skip to content

Commit 303c1cc

Browse files
committedDec 19, 2023
Add missing doc. for incremental on Dialyzer analysis
1 parent 7a27a26 commit 303c1cc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎apps/rebar/src/rebar_prv_dialyzer.erl

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ desc() ->
8787
"success typing analysis\n"
8888
"`output_format` - configure whether the dialyzer_warnings file will have "
8989
"the `raw` or `formatted` output\n"
90+
"`incremental` - incremental analysis mode, defaults to `false`\n"
9091
"\n"
9192
"For example, to warn on unmatched returns: \n"
9293
"{dialyzer, [{warnings, [unmatched_returns]}]}.\n"

‎rebar.config.sample

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@
123123
{plt_prefix, "rebar3"},
124124
{base_plt_apps, [stdlib, kernel, crypto]},
125125
{base_plt_location, global}, % global | "/my/file/name"
126-
{base_plt_prefix, "rebar3"}
126+
{base_plt_prefix, "rebar3"},
127+
incremental
127128
]}.
128129

129130

0 commit comments

Comments
 (0)
Please sign in to comment.