소스 검색

Merge pull request #2360 from paulo-ferraz-oliveira/feature/alias_in_rebar_config_sample

Add `alias` to example `rebar.config.sample`
pull/2361/head
Fred Hebert 4 년 전
committed by GitHub
부모
커밋
d11ceb4fe9
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      rebar.config.sample

+ 13
- 0
rebar.config.sample 파일 보기

@ -252,3 +252,16 @@
%% * {module(), function()},
%% * {module(), function(), arity()}
{xref_ignores, []}.
%% == alias ==
%% When you want a certain combination of operations to be done
%% as if you were using a rebar3 command. In the example below:
%% > rebar3 check
%% (equivalent to rebar3 do xref, dialyzer)
%% or
%% > rebar3 test
%% (equivalent to rebar3 do eunit, ct --suite=rebar_alias_SUITE, cover)
{alias, [{check, [xref, dialyzer]},
{test, [eunit, {ct, "--suite=rebar_alias_SUITE"}, cover]}]}.

불러오는 중...
취소
저장