Current section

Files

Jump to
rebar3_audit rebar.config
Raw

rebar.config

{erl_opts, [
debug_info, warnings_as_errors, warn_export_vars, warn_unused_import
]}.
{project_plugins, [
covertool,
{rebar3_sbom,
{git, "https://github.com/Taure/rebar3_sbom.git",
{branch, "feat/include-otp-components"}}},
{erlfmt, "1.7.0"},
{rebar3_ex_doc, "0.2.25"}
]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/Taure/rebar3_audit">>},
{extras, [
{"guides/getting-started.md", #{title => <<"Getting Started">>}},
{"guides/ci-integration.md", #{title => <<"CI Integration">>}},
{"guides/github-action.md", #{title => <<"GitHub Action">>}},
{"guides/security-workflow.md", #{title => <<"Security Workflow">>}},
{"LICENSE", #{title => <<"License">>}}
]},
{main, <<"getting-started">>}
]}.
{erlfmt, [
write,
{print_width, 80},
{files, [
"*.config{,.script}",
"src/**/*.{hrl,app.src,erl}",
"test/**/*.erl"
]}
]}.
{profiles, [{test, [{cover_enabled, true}, {cover_opts, [verbose]}]}]}.