Skip to content

Instantly share code, notes, and snippets.

@mikeerickson
Created August 27, 2018 18:58
Show Gist options
  • Save mikeerickson/054f432987cbe6cf9b972277590f6a83 to your computer and use it in GitHub Desktop.
Save mikeerickson/054f432987cbe6cf9b972277590f6a83 to your computer and use it in GitHub Desktop.
Success Script called by Lint
const chalk = require('chalk');
const cmd = process.argv[2] !== undefined ? process.argv[2] + ':' : '';
const msg = chalk.green.bold(`${cmd} No Errors Found`);
console.log('');
console.log(`${chalk.bgGreen.black.bold(' DONE ')} ${msg}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment