Skip to content

Commit 3edd767

Browse files
authored
Merge pull request #123 from codeclimate/pr/109
Support for ignore_path in engine config
2 parents a508779 + c29485e commit 3edd767

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: bin/eslint.js

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ runWithTiming("engineConfig", function () {
168168
options.extensions = userConfig.extensions;
169169
}
170170

171+
if (userConfig.ignore_path) {
172+
options.ignorePath = userConfig.ignore_path;
173+
}
174+
171175
if (userConfig.debug) {
172176
debug = true;
173177
}

0 commit comments

Comments
 (0)