mirror of
https://github.com/valitydev/cowboy_kitten.git
synced 2024-11-06 02:15:21 +00:00
72 lines
1.6 KiB
Erlang
72 lines
1.6 KiB
Erlang
%%%
|
|
%%% Copyright 2019 RBKmoney
|
|
%%%
|
|
%%% Licensed under the Apache License, Version 2.0 (the "License");
|
|
%%% you may not use this file except in compliance with the License.
|
|
%%% You may obtain a copy of the License at
|
|
%%%
|
|
%%% http://www.apache.org/licenses/LICENSE-2.0
|
|
%%%
|
|
%%% Unless required by applicable law or agreed to in writing, software
|
|
%%% distributed under the License is distributed on an "AS IS" BASIS,
|
|
%%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
%%% See the License for the specific language governing permissions and
|
|
%%% limitations under the License.
|
|
%%%
|
|
|
|
%% Common project erlang options.
|
|
{erl_opts, [
|
|
|
|
% mandatory
|
|
debug_info,
|
|
warnings_as_errors,
|
|
warn_export_all,
|
|
warn_missing_spec,
|
|
warn_untyped_record,
|
|
warn_export_vars,
|
|
|
|
% by default
|
|
warn_unused_record,
|
|
warn_bif_clash,
|
|
warn_obsolete_guard,
|
|
warn_unused_vars,
|
|
warn_shadow_vars,
|
|
warn_unused_import,
|
|
warn_unused_function,
|
|
warn_deprecated_function
|
|
]}.
|
|
|
|
%% XRef checks
|
|
{xref_checks, [
|
|
undefined_function_calls,
|
|
undefined_functions,
|
|
deprecated_functions_calls,
|
|
deprecated_functions
|
|
]}.
|
|
|
|
{deps, [
|
|
{cowboy, "2.5.0"},
|
|
{genlib,
|
|
{git, "https://github.com/rbkmoney/genlib.git",
|
|
{branch, "master"}
|
|
}
|
|
}
|
|
]}.
|
|
|
|
|
|
%% Tests
|
|
{cover_enabled, true}.
|
|
|
|
%% Dialyzer static analyzing
|
|
{dialyzer, [
|
|
{warnings, [
|
|
% mandatory
|
|
unmatched_returns,
|
|
error_handling,
|
|
race_conditions,
|
|
unknown
|
|
]},
|
|
{plt_apps, all_deps},
|
|
{plt_extra_apps, [eunit]}
|
|
]}.
|