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