Skip to content

Commit 7afc0a6

Browse files
committed
Fix Windows support
1 parent b5f5d41 commit 7afc0a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulp/tasks/check.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const format = () =>
1212

1313
// We do not use `gulp-eslint` because it does not support --cache
1414
const eslint = function() {
15-
const files = FILES.CHECK.map(pattern => `'${pattern}'`).join(' ')
15+
const files = FILES.CHECK.map(pattern => `"${pattern}"`).join(' ')
1616
return gulpExeca(
1717
`eslint ${files} --ignore-path .gitignore --fix --cache --format codeframe --max-warnings 0 --report-unused-disable-directives`,
1818
)

0 commit comments

Comments
 (0)