Skip to content

Commit 103db11

Browse files
committed
fix(gulp): exclude constant file from lint:scripts:client
closes #1587
1 parent f4e590f commit 103db11

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/templates/gulpfile.babel(gulp).js

+5-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,11 @@ gulp.task('transpile:server', () => {
312312
gulp.task('lint:scripts', cb => runSequence(['lint:scripts:client', 'lint:scripts:server'], cb));
313313

314314
gulp.task('lint:scripts:client', () => {
315-
return gulp.src(_.union(paths.client.scripts, _.map(paths.client.test, blob => '!' + blob)))
315+
return gulp.src(_.union(
316+
paths.client.scripts,
317+
_.map(paths.client.test, blob => '!' + blob),
318+
[`!${clientPath}/app/app.constant.<%= scriptExt %>`]
319+
))
316320
.pipe(lintClientScripts());
317321
});
318322

0 commit comments

Comments
 (0)