Files @ 6d864e8ce56b
Branch filter:

Location: symposion_app/gulp/tasks/xo.js

Sachi King
Cleanout conf-specific proposals.

We don't have these mini-confs (yet).
We don't want these files.
We're not going to rename the release in 0010 and drop all the extra
tables in 0011, we're going to toss them on the cutting room floor and
call it good.

They're in git, we can look at this commit and past ones on how to
recreate these for new proposal additions going forward.
/**
 * 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());
};