mirror of
https://github.com/valitydev/jesse.git
synced 2024-11-06 17:45:25 +00:00
3460fc6f34
Add more warnings
21 lines
574 B
Erlang
21 lines
574 B
Erlang
%%-*- mode: erlang -*-
|
|
|
|
{erl_opts, [ {platform_define, "^[0-9]+", namespaced_dicts}
|
|
, debug_info
|
|
, warn_unused_vars
|
|
, warn_shadow_vars
|
|
, warn_unused_import
|
|
, warn_export_all
|
|
, warn_export_vars
|
|
, warn_obsolete_guard
|
|
, warn_untyped_record
|
|
, warnings_as_errors
|
|
]}.
|
|
|
|
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
|
|
|
|
{xref_checks, [ fail_on_warning
|
|
, undefined_function_calls
|
|
, deprecated_function_calls
|
|
]}.
|