mirror of
https://github.com/openstf/stf
synced 2025-10-03 17:59:28 +02:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
var gulp = require('gulp')
|
|
var jshint = require('gulp-jshint')
|
|
|
|
gulp.task('lint', function() {
|
|
gulp.src(['lib/**/*.js', '*.js'])
|
|
.pipe(jshint())
|
|
.pipe(jshint.reporter('jshint-stylish'))
|
|
})
|
|
|
|
gulp.task('test', ['lint'])
|