Current section

Files

Jump to
Raw

rebar.config

{erl_opts,
[debug_info,
warn_export_all,
warn_export_vars,
warn_missing_spec,
warn_obsolete_guards,
warn_shadow_vars,
warn_unused_import,
warnings_as_errors,
{platform_define, "^(1|(20))", 'NO_CUSTOM_HOSTNAME_CHECK'},
{platform_define, "^(1|(20))", 'NO_URI_STRING'},
{platform_define, "^19", 'SSL_OLD_CLIENT_OPTIONS'},
{platform_define, "^20", 'SSL_OLD_CLIENT_OPTIONS'},
{platform_define, "^21.[0-2]", 'SSL_OLD_CLIENT_OPTIONS'},
{platform_define, "^2[3-9]", 'UPDATER_SUPPORTED'},
{platform_define, "^[3-9]", 'UPDATER_SUPPORTED'}
]}.
{minimum_otp_vsn, "19"}.
{deps,
[{ssl_verify_fun, "1.1.6"}
]}.
{shell,
[{apps, [tls_certificate_check]},
{config, "shell.config"}
]}.
{dialyzer,
[{plt_include_all_deps, true},
{warnings,
[unmatched_returns,
error_handling,
race_conditions,
underspecs,
unknown
]}
]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{profiles,
[{development,
[{deps, [{recon, "2.5.1"}]},
{erl_opts,
[nowarn_missing_spec,
nowarnings_as_errors]}
]},
{publish,
[{plugins, [{rebar3_hex, "6.10.3"}]}
]},
{test,
[{erl_opts,
[debug_info,
nowarn_export_all,
nowarn_missing_spec,
nowarnings_as_errors]}
]},
{update_authorities,
[{erl_opts,
[{d, 'UPDATER_ENABLED'}
]},
{escript_name, "tls_certificate_check_authorities_update"},
{escript_emu_args, "%%! -noinput\n"}
]}
]}.
{cover_enabled, true}.
{edoc_opts,
[{stylesheet_file, "doc/custom_stylesheet.css"}
]}.