Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
iiroj committed Dec 17, 2019
2 parents 1b64239 + 33b9752 commit f2a2702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -196,7 +196,7 @@ const micromatch = require('micromatch')
module.exports = {
'*': allFiles => {
const match = micromatch(allFiles, ['*.js', '*.ts'])
return match.map(file => `eslint ${file}`)
return `eslint ${match.join(" ")}`
}
}
```
Expand All @@ -212,7 +212,7 @@ module.exports = {
'*.js': files => {
// from `files` filter those _NOT_ matching `*test.js`
const match = micromatch.not(files, '*test.js')
return match.map(file => `eslint ${file}`)
return `eslint ${match.join(" ")}`
}
}
```
Expand Down

0 comments on commit f2a2702

Please sign in to comment.