Skip to content

Commit

Permalink
Allow for analysis under rebar3_hank
Browse files Browse the repository at this point in the history
(also move to most recent rebar3_lint and rebar3_hex)
  • Loading branch information
paulo-ferraz-oliveira committed Jul 25, 2021
1 parent 6ba392e commit 7b33aae
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ jobs:
- run: rebar3 dialyzer
- run: rebar3 xref
- run: rebar3 lint
- run: rebar3 hank
- run: rebar3 ct
- run: rebar3 cover
19 changes: 14 additions & 5 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
]
}.

{project_plugins,
[
{rebar3_lint, "0.4.0"}
]
}.
{project_plugins, [
rebar3_lint,
rebar3_hank,
rebar3_hex
]}.

{profiles, [
{test, [
Expand Down Expand Up @@ -49,3 +49,12 @@
, {plt_location, local}
, {base_plt_apps, [erts, stdlib, kernel]}
, {base_plt_location, global}]}.

%% == hank ==

{hank, [
{ignore, [
{"example/**", unnecessary_function_arguments},
{"test/**", unnecessary_function_arguments}
]}
]}.

0 comments on commit 7b33aae

Please sign in to comment.