Skip to content

Commit

Permalink
🐛 pass ignored files from CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPurdy committed Oct 25, 2015
1 parent e264e64 commit 0f5684c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ sassLint.lintFiles = function (files, options, configPath) {

if (files) {
ignores = this.getConfig(options, configPath).files.ignore || '';
files = glob.sync(files, {'ignore': ignores});
files = glob.sync(files, {ignore: ignores});
}
else {
files = this.getConfig(options, configPath).files;
Expand Down

0 comments on commit 0f5684c

Please sign in to comment.