From c7a611d22d502aa2b9a25e6c081f3f76541515b1 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Sun, 30 Nov 2014 14:17:43 +0100 Subject: [PATCH] Consistently format export attributes --- src/rebar_app_utils.erl | 3 ++- src/rebar_config.erl | 25 +++++++++++++++++++------ src/rebar_core.erl | 3 ++- src/rebar_dia_compiler.erl | 3 ++- src/rebar_qc.erl | 5 ++++- 5 files changed, 29 insertions(+), 10 deletions(-) diff --git a/src/rebar_app_utils.erl b/src/rebar_app_utils.erl index a2484e1..3f9c414 100644 --- a/src/rebar_app_utils.erl +++ b/src/rebar_app_utils.erl @@ -26,7 +26,8 @@ %% ------------------------------------------------------------------- -module(rebar_app_utils). --export([is_app_dir/0, is_app_dir/1, +-export([is_app_dir/0, + is_app_dir/1, is_app_src/1, app_src_to_app/1, app_name/2, diff --git a/src/rebar_config.erl b/src/rebar_config.erl index bdc3fb5..f849276 100644 --- a/src/rebar_config.erl +++ b/src/rebar_config.erl @@ -26,16 +26,29 @@ %% ------------------------------------------------------------------- -module(rebar_config). --export([new/0, new/1, base_config/1, consult_file/1, - get/3, get_local/3, get_list/3, +-export([new/0, + new/1, + base_config/1, + consult_file/1, + get/3, + get_local/3, + get_list/3, get_all/2, set/3, - set_global/3, get_global/3, + set_global/3, + get_global/3, is_recursive/1, - save_env/3, get_env/2, reset_envs/1, - set_skip_dir/2, is_skip_dir/2, reset_skip_dirs/1, + save_env/3, + get_env/2, + reset_envs/1, + set_skip_dir/2, + is_skip_dir/2, + reset_skip_dirs/1, clean_config/2, - set_xconf/3, get_xconf/2, get_xconf/3, erase_xconf/2]). + set_xconf/3, + get_xconf/2, + get_xconf/3, + erase_xconf/2]). -include("rebar.hrl"). diff --git a/src/rebar_core.erl b/src/rebar_core.erl index 4557bb8..9226d3d 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -26,7 +26,8 @@ %% ------------------------------------------------------------------- -module(rebar_core). --export([process_commands/2, help/2]). +-export([process_commands/2, + help/2]). -include("rebar.hrl"). diff --git a/src/rebar_dia_compiler.erl b/src/rebar_dia_compiler.erl index ba9d159..5ea84d7 100644 --- a/src/rebar_dia_compiler.erl +++ b/src/rebar_dia_compiler.erl @@ -26,7 +26,8 @@ %% ------------------------------------------------------------------- -module(rebar_dia_compiler). --export([compile/2, clean/2]). +-export([compile/2, + clean/2]). %% for internal use only -export([info/2]). diff --git a/src/rebar_qc.erl b/src/rebar_qc.erl index 12a411b..5ec6110 100644 --- a/src/rebar_qc.erl +++ b/src/rebar_qc.erl @@ -26,7 +26,10 @@ %% ------------------------------------------------------------------- -module(rebar_qc). --export([qc/2, triq/2, eqc/2, clean/2]). +-export([qc/2, + triq/2, + eqc/2, + clean/2]). %% for internal use only -export([info/2]).