Files @ f59e3305cfef
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/xo.js

Christopher Neugebauer
Partial revert
/**
 * 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());
};