-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathrebar.config
More file actions
30 lines (24 loc) · 737 Bytes
/
rebar.config
File metadata and controls
30 lines (24 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
%% This is a sample rebar.conf file that shows examples of some of rebar's
%% options.
%% == Core ==
%% Additional library directories to add to the code path
{lib_dirs, []}.
%% == Erlang Compiler ==
%% Erlang compiler options
{erl_first_files, ["dispcount"]}.
{erl_opts, [debug_info, {i, "include"}]}.
{cover_export_enabled, true}.
{cover_enabled, true}.
{plugins, [rebar3_proper]}.
%% The PropEr dependency is required to compile the test cases
%% and will be used to run the tests as well.
{profiles,
[{test, [
{deps, [
%% hex
{proper, "1.3.0"}
]}
]}
]}.