Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.PHONY: elvis distclean-elvis

# Configuration.
ELVIS_VERSION ?= 4.2.3
ELVIS_VERSION ?= 5.0.1
ELVIS_CONFIG ?= $(CURDIR)/elvis.config

ELVIS ?= $(CURDIR)/elvis
Expand All @@ -23,7 +23,7 @@ ELVIS_REBAR3 ?= rebar3
help::
$(verbose) printf "%s\n" "" \
"Elvis targets:" \
" elvis Run Elvis using the local elvis.config or download the default otherwise"
" elvis Run Elvis on your codebase."

distclean:: distclean-elvis

Expand Down
14 changes: 5 additions & 9 deletions test/test-elvis.config
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
[
{
elvis,
[
{config, [
#{
dirs => ["src"],
filter => "*.erl",
ruleset => erl_files_strict
}
]}
config, [
#{
files => ["src/*.erl"],
ruleset => erl_files_strict
}
]
}
].
Loading