Skip to content

Commit

Permalink
Fix Windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Dec 10, 2018
1 parent 37c8011 commit dbb8a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/tasks/test/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ format.description = 'Format files using prettier'
// We do not use `gulp-eslint` because it does not support --cache
const lint = function() {
const files = [...FILES.JAVASCRIPT, ...FILES.MARKDOWN]
.map(pattern => `'${pattern}'`)
.map(pattern => `"${pattern}"`)
.join(' ')
return gulpExeca(
`eslint ${files} --ignore-path .gitignore --fix --cache --format codeframe --max-warnings 0 --report-unused-disable-directives`,
Expand Down

0 comments on commit dbb8a03

Please sign in to comment.