Skip to content

Instantly share code, notes, and snippets.

@erikringsmuth
Last active August 29, 2015 14:05
Show Gist options
  • Save erikringsmuth/f2211a80d4b486c6aa79 to your computer and use it in GitHub Desktop.
Save erikringsmuth/f2211a80d4b486c6aa79 to your computer and use it in GitHub Desktop.
gulp jshint web components
gulp.task('lint', function() {
gulp.src(['src/*.js', 'src/*.html'])
.pipe(jshint.extract('always'))
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('jshint-stylish'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment