Files @ cab9734d99d6
Branch filter:

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

cab9734d99d6 228 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
Merge pull request #83 from northbaypython/ticket-copy

add copy, minor edits, and stub out pages for for ticket sales
/**
 * 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());
};