Files @ daac0fdd6043
Branch filter:

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

daac0fdd6043 228 B application/javascript Show Source Show as Raw Download as Raw
Brett Smith
templates: Render payment buttons at the bottom of invoices.

In addition to the top, to better follow modern convention.
/**
 * 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());
};