Files @ 982a7626824d
Branch filter:

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

Christopher Neugebauer
Splits out voucher_code.html
/**
 * 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());
};