mirror of
https://github.com/thegecko/web-bluetooth-dfu.git
synced 2025-12-11 03:18:12 +08:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
var gulp = require('gulp');
|
|
var jshint = require('gulp-jshint');
|
|
|
|
gulp.task('lint', function() {
|
|
return gulp.src(['dist/*.js', '!dist/web-bluetooth*.js'])
|
|
.pipe(jshint())
|
|
.pipe(jshint.reporter('default'));
|
|
});
|
|
|
|
gulp.task('default', ['lint']); |