Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

add --force-exclusion flag to reek options #287

Merged
merged 3 commits into from
May 18, 2019
Merged
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
2 changes: 1 addition & 1 deletion src/lint/lib/linters/reek.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function Reek(opts) {
this.path = opts.path;
this.responsePath = "stdout";
this.errorPath = "stderr";
this.args = ["-f", "json"];
this.args = ["-f", "json", "--force-exclusion"];
}

Reek.prototype.processResult = function(data) {
Expand Down