Skip to content

Commit b635b6d

Browse files
committed
Update rebar.config
1 parent 069ac55 commit b635b6d

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

rebar.config

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1-
%% -*- mode: erlang; tab-width: 4; indent-tabs-mode: 1; st-rulers: [70] -*-
2-
%% vim: ts=4 sw=4 ft=erlang noet
1+
%%% Copyright (c) Andrew Bennett
2+
%%%
3+
%%% This source code is licensed under the MIT license found in the
4+
%%% LICENSE.md file in the root directory of this source tree.
5+
%%%
6+
%%% % @format
37
{erl_opts, [
4-
debug_info,
5-
warnings_as_errors
8+
debug_info,
9+
warnings_as_errors
10+
]}.
11+
12+
% {deps, [
13+
% {eqwalizer_support,
14+
% {git_subdir, "https://github.com/WhatsApp/eqwalizer.git", {branch, "main"}, "eqwalizer_support"}}
15+
% ]}.
16+
17+
{shell,
18+
% {config, "config/sys.config"},
19+
[{apps, [jose]}]}.
20+
21+
{dialyzer, [
22+
{plt_apps, all_deps},
23+
{warnings, [
24+
unknown
25+
]}
26+
]}.
27+
28+
{xref_checks, [
29+
undefined_function_calls,
30+
undefined_functions,
31+
locals_not_used,
32+
% exports_not_used,
33+
deprecated_function_calls,
34+
deprecated_functions
635
]}.

0 commit comments

Comments
 (0)