Merge pull request #404 from tuncer/consistent-export-attributes

Consistently format export attributes
This commit is contained in:
Fred Hebert 2014-12-04 10:51:48 -05:00
commit 01ef314951
4 changed files with 27 additions and 9 deletions

View file

@ -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").

View file

@ -26,7 +26,8 @@
%% -------------------------------------------------------------------
-module(rebar_core).
-export([process_commands/2, help/2]).
-export([process_commands/2,
help/2]).
-include("rebar.hrl").

View file

@ -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]).

View file

@ -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]).