From fdf35141e0aefbca97eda93010f7e3be9796b1e0 Mon Sep 17 00:00:00 2001 From: Contra Date: Fri, 17 Jan 2014 03:03:04 -0700 Subject: [PATCH] clean up jshint comments --- bin/gulp.js | 2 -- gulpfile.js | 2 -- index.js | 2 -- lib/completion.js | 2 -- lib/taskTree.js | 2 -- test/dest.js | 2 -- test/src.js | 2 -- test/taskTree.js | 2 -- test/tasks.js | 2 -- 9 files changed, 18 deletions(-) diff --git a/bin/gulp.js b/bin/gulp.js index 0f546281c..f09a1f84d 100755 --- a/bin/gulp.js +++ b/bin/gulp.js @@ -1,7 +1,5 @@ #!/usr/bin/env node -/*jshint node:true */ - 'use strict'; var path = require('path'); diff --git a/gulpfile.js b/gulpfile.js index 055b44cdb..92981f473 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,5 +1,3 @@ -/* jshint node: true */ - 'use strict'; // TODO: figure out the best way to make gulp a dep of itself diff --git a/index.js b/index.js index 18450969e..4345247df 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,3 @@ -/*jshint node:true */ - 'use strict'; var util = require('util'); diff --git a/lib/completion.js b/lib/completion.js index 7ba8a99ab..d8f93317b 100644 --- a/lib/completion.js +++ b/lib/completion.js @@ -1,5 +1,3 @@ -/* jshint node: true */ - 'use strict'; var fs = require('fs'); diff --git a/lib/taskTree.js b/lib/taskTree.js index ae31b8dc4..f06de7a66 100644 --- a/lib/taskTree.js +++ b/lib/taskTree.js @@ -1,5 +1,3 @@ -/* jshint node: true */ - 'use strict'; module.exports = function(tasks) { diff --git a/test/dest.js b/test/dest.js index b686a4d2f..538897ba1 100644 --- a/test/dest.js +++ b/test/dest.js @@ -1,5 +1,3 @@ -/*jshint node:true */ -/*global describe:false, it:false, beforeEach:false, afterEach:false */ 'use strict'; var gulp = require('../'); diff --git a/test/src.js b/test/src.js index efa8c0da8..8d93ed0e6 100644 --- a/test/src.js +++ b/test/src.js @@ -1,5 +1,3 @@ -/*jshint node:true */ -/*global describe:false, it:false, beforeEach:false, afterEach:false */ 'use strict'; var gulp = require('../'); diff --git a/test/taskTree.js b/test/taskTree.js index 47a4b9697..52f8c57b8 100644 --- a/test/taskTree.js +++ b/test/taskTree.js @@ -1,5 +1,3 @@ -/*jshint node:true */ -/*global describe:false, it:false, beforeEach:false, afterEach:false */ 'use strict'; var taskTree = require('../lib/taskTree'); diff --git a/test/tasks.js b/test/tasks.js index e8f2d202d..5dfb62d71 100644 --- a/test/tasks.js +++ b/test/tasks.js @@ -1,5 +1,3 @@ -/*jshint node:true */ -/*global describe:false, it:false, beforeEach:false, afterEach:false */ 'use strict'; var gulp = require('../');