Description: don't run jshint tests during build
 The upstream build script runs jshint checks during the build. Because jshint
 is not DFSG compatible and hence cannot be included in Debian, this patch skips
 running these checks.
Author: Andrew Harvey<andrew.harvey4@gmail.com>
Author: Jonas Smedegaard <dr@jones.dk>
Origin: vendor
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Jakefile.js
+++ b/Jakefile.js
@@ -18,7 +18,7 @@
 task('lint', build.lint);
 
 desc('Combine and compress Leaflet.markercluster source files');
-task('build', ['lint'], build.build);
+task('build', build.build);
 
 desc('Run PhantomJS tests');
 task('test', ['lint'], build.test);
--- a/build/build.js
+++ b/build/build.js
@@ -1,5 +1,4 @@
 var fs = require('fs'),
-    jshint = require('jshint'),
     UglifyJS = require('uglify-js'),
 
     deps = require('./deps.js').deps,
