|
2 | 2 |
|
3 | 3 | {erl_opts, [warnings_as_errors]}. |
4 | 4 |
|
5 | | -{cover_excl_mods, |
6 | | - [testutil, |
7 | | - basic_SUITE, fold_SUITE, mockvnode_SUITE, mock_kv_vnode]}. |
8 | | - |
9 | | -{profiles, |
10 | | - [{eqc, [{deps, [meck, fqc]}, |
11 | | - {erl_opts, [debug_info, {d, 'EQC'}]}, |
12 | | - {extra_src_dirs, ["test/end_to_end", "test/property"]}, |
13 | | - {plugins, [rebar_eqc]} |
14 | | - ]}, |
15 | | - {test, [{extra_src_dirs, ["test/end_to_end", "test/property"]} |
16 | | - ]} |
17 | | - ]}. |
18 | | - |
19 | | - {xref_checks, |
20 | | - [undefined_function_calls, undefined_functions, locals_not_used]}. |
| 5 | +{cover_excl_mods, [ |
| 6 | + testutil, |
| 7 | + basic_SUITE, |
| 8 | + fold_SUITE, |
| 9 | + mockvnode_SUITE, |
| 10 | + mock_kv_vnode |
| 11 | +]}. |
| 12 | + |
| 13 | +{erlfmt, [ |
| 14 | + write, |
| 15 | + {print_width, 80}, |
| 16 | + {files, [ |
| 17 | + "{src,include}/*.{hrl,erl,app.src}", |
| 18 | + "test/end_to_end/*.erl", |
| 19 | + "rebar.config" |
| 20 | + ]}, |
| 21 | + {exclude_files, ["src/erlfmt_parse.erl"]} |
| 22 | +]}. |
| 23 | + |
| 24 | +{project_plugins, [ |
| 25 | + {erlfmt, {git, "https://github.com/OpenRiak/erlfmt.git", {branch, "main"}}} |
| 26 | +]}. |
| 27 | + |
| 28 | +{profiles, [ |
| 29 | + {eqc, [ |
| 30 | + {deps, [meck, fqc]}, |
| 31 | + {erl_opts, [debug_info, {d, 'EQC'}]}, |
| 32 | + {extra_src_dirs, ["test/end_to_end", "test/property"]}, |
| 33 | + {plugins, [rebar_eqc]} |
| 34 | + ]}, |
| 35 | + {test, [{extra_src_dirs, ["test/end_to_end", "test/property"]}]} |
| 36 | +]}. |
| 37 | + |
| 38 | +{xref_checks, [undefined_function_calls, undefined_functions, locals_not_used]}. |
21 | 39 |
|
22 | 40 | {ct_opts, [{dir, ["test/end_to_end"]}]}. |
23 | 41 |
|
24 | 42 | {deps, [ |
25 | | - {leveled, {git, "https://github.com/martinsumner/leveled", {branch, "develop-3.4"}}} |
26 | | - ]}. |
| 43 | + {leveled, |
| 44 | + {git, "https://github.com/martinsumner/leveled", |
| 45 | + {branch, "develop-3.4"}}} |
| 46 | +]}. |
0 commit comments