Skip to content

Commit fc7f422

Browse files
authored
fix: add kura to plt_extra_apps to resolve dialyzer warnings (#3)
kura is in optional_applications but plt_apps: all_deps doesn't include optional apps automatically. Explicitly adding it removes all 54 "unknown function/type" warnings.
1 parent 019e84d commit fc7f422

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rebar.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121

2222
{dialyzer, [
2323
{warnings, [error_handling, unmatched_returns, unknown]},
24-
{plt_apps, all_deps}
24+
{plt_apps, all_deps},
25+
{plt_extra_apps, [kura]}
2526
]}.
2627

2728
{xref_checks, [undefined_function_calls, undefined_functions]}.

0 commit comments

Comments
 (0)