mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Consistently format export attributes
This commit is contained in:
parent
b7960656e7
commit
c7a611d22d
5 changed files with 29 additions and 10 deletions
|
@ -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,
|
||||
|
|
|
@ -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").
|
||||
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
%% -------------------------------------------------------------------
|
||||
-module(rebar_core).
|
||||
|
||||
-export([process_commands/2, help/2]).
|
||||
-export([process_commands/2,
|
||||
help/2]).
|
||||
|
||||
-include("rebar.hrl").
|
||||
|
||||
|
|
|
@ -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]).
|
||||
|
|
|
@ -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]).
|
||||
|
|
Loading…
Reference in a new issue