Packages

A simpler, opinionated, `cowboy_rest` application-behaviour

Current section

Files

Jump to
Raw

rebar.config

{minimum_otp_vsn, "26"}.
{erl_opts, [
debug_info,
report,
verbose,
warnings_as_errors
]}.
{project_plugins, [
{erlfmt, "1.3.0"},
{rebar3_ex_doc, "0.2.23"},
{rebar3_hex, "7.0.8"},
{rebar3_lint, "3.2.5"}
]}.
{deps, [{cowboy, "2.12.0"}]}.
{alias, [
{ci, [fmt, lint, xref, dialyzer, ex_doc]}
]}.
{erlfmt, [
write,
{files, [
"elvis.config",
"rebar.config",
"src/*.app.src",
"src/**/*.erl"
"example/rebar.config",
"example/config/sys.config",
"example/src/*.app.src",
"example/src/**/*.erl"
]}
]}.
{dialyzer, [
{warnings, [
error_handling,
underspecs,
unmatched_returns,
no_unknown
]}
]}.
{xref_checks, [deprecated_function_calls, locals_not_used]}.
{ex_doc, [
{extras, [
"README.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE.md",
"CHANGELOG.md"
]},
{main, "README.md"},
{api_reference, false},
{source_url, "https://github.com/paulo-ferraz-oliveira/simpler_cowboy_rest"},
{prefix_ref_vsn_with_v, false}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.