mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 11:09:55 +00:00
Merge pull request #404 from tuncer/consistent-export-attributes
Consistently format export attributes
This commit is contained in:
commit
01ef314951
4 changed files with 27 additions and 9 deletions
|
@ -26,16 +26,29 @@
|
||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
-module(rebar_config).
|
-module(rebar_config).
|
||||||
|
|
||||||
-export([new/0, new/1, base_config/1, consult_file/1,
|
-export([new/0,
|
||||||
get/3, get_local/3, get_list/3,
|
new/1,
|
||||||
|
base_config/1,
|
||||||
|
consult_file/1,
|
||||||
|
get/3,
|
||||||
|
get_local/3,
|
||||||
|
get_list/3,
|
||||||
get_all/2,
|
get_all/2,
|
||||||
set/3,
|
set/3,
|
||||||
set_global/3, get_global/3,
|
set_global/3,
|
||||||
|
get_global/3,
|
||||||
is_recursive/1,
|
is_recursive/1,
|
||||||
save_env/3, get_env/2, reset_envs/1,
|
save_env/3,
|
||||||
set_skip_dir/2, is_skip_dir/2, reset_skip_dirs/1,
|
get_env/2,
|
||||||
|
reset_envs/1,
|
||||||
|
set_skip_dir/2,
|
||||||
|
is_skip_dir/2,
|
||||||
|
reset_skip_dirs/1,
|
||||||
clean_config/2,
|
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").
|
-include("rebar.hrl").
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
-module(rebar_core).
|
-module(rebar_core).
|
||||||
|
|
||||||
-export([process_commands/2, help/2]).
|
-export([process_commands/2,
|
||||||
|
help/2]).
|
||||||
|
|
||||||
-include("rebar.hrl").
|
-include("rebar.hrl").
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
-module(rebar_dia_compiler).
|
-module(rebar_dia_compiler).
|
||||||
|
|
||||||
-export([compile/2, clean/2]).
|
-export([compile/2,
|
||||||
|
clean/2]).
|
||||||
|
|
||||||
%% for internal use only
|
%% for internal use only
|
||||||
-export([info/2]).
|
-export([info/2]).
|
||||||
|
|
|
@ -26,7 +26,10 @@
|
||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
-module(rebar_qc).
|
-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
|
%% for internal use only
|
||||||
-export([info/2]).
|
-export([info/2]).
|
||||||
|
|
Loading…
Reference in a new issue