client/annotviz/gulp/tasks/jshint.js
author rougeronj
Fri, 10 Apr 2015 16:45:34 +0200
changeset 145 a8052f8ab19c
parent 85 eff9460bd4f2
permissions -rw-r--r--
add range options to scale the scene depending on this range. Add rescale function to rescale the scene when a note is out of this range

'use strict';

var gulp = require('gulp');
var jshint = require('gulp-jshint');

// JSHint
gulp.task('jshint', function () {
  return gulp.src('app/js/**/*.js')
    .pipe(jshint('.jshintrc'))
    .pipe(jshint.reporter(require('jshint-stylish')));
});