mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00

It's problematic: both doing it right and doing it wrong trigger a warning and we treat warnings as errors.
12 lines
194 B
Erlang
12 lines
194 B
Erlang
{dialyzer_opts, [src, {warnings, [
|
|
behaviours,
|
|
error_handling,
|
|
race_conditions,
|
|
unmatched_returns
|
|
%% underspecs
|
|
]}]}.
|
|
{erl_opts, [
|
|
%% bin_opt_info,
|
|
warnings_as_errors,
|
|
warn_export_all
|
|
]}.
|