Files @ 0b1a15ca777d
Branch filter:

Location: copyleftconf-website-fork/gulp/tasks/xo.js - annotation

0b1a15ca777d 228 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
Update badge artwork
/**
 * Dependencies
 */
const gulp = require('gulp');
const xo   = require('gulp-xo');

/**
 * Module body / Expose
 */
module.exports = (entry, config) => {
  config = config || {};
  return gulp.src(entry)
    .pipe(xo());
};