We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d7860 commit 01d75a7Copy full SHA for 01d75a7
gulpfile.js
@@ -1,11 +1,11 @@
1
// Dependencies
2
-var gulp = require('gulp');
3
-var debug = require('gulp-debug');
4
-var jshint = require('gulp-jshint');
5
-var jsonlint = require('gulp-jsonlint');
+const gulp = require('gulp');
+const debug = require('gulp-debug');
+const jshint = require('gulp-jshint');
+const jsonlint = require('gulp-jsonlint');
6
7
// Exclude node_modules
8
-var self = '!node_modules/**/*';
+const self = '!node_modules/**/*';
9
10
// Lint JavaScript files
11
gulp.task('jshint', (done) => {
0 commit comments