Skip to content

Commit 1f03946

Browse files
committed
refactor(gulp): use let
1 parent 39cfe1f commit 1f03946

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/templates/gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ function whenServerReady(cb) {
9494
* Reusable pipelines
9595
********************/
9696

97-
var lintClientScripts = lazypipe()<% if(filters.coffee) { %>
97+
let lintClientScripts = lazypipe()<% if(filters.coffee) { %>
9898
.pipe(plugins.coffeelint)
9999
.pipe(plugins.coffeelint.reporter);<% } else { %>
100100
.pipe(plugins.jshint, 'client/.jshintrc')
101101
.pipe(plugins.jshint.reporter, 'jshint-stylish');<% } %>
102102

103-
var lintServerScripts = lazypipe()<% if(filters.coffee) { %>
103+
let lintServerScripts = lazypipe()<% if(filters.coffee) { %>
104104
.pipe(plugins.coffeelint)
105105
.pipe(plugins.coffeelint.reporter);<% } else { %>
106106
.pipe(plugins.jshint, 'server/.jshintrc')

0 commit comments

Comments
 (0)