Tiny eslint wrapper to allow executing javascript linting in parallel.
npm install eslint-parallelnode_modules/.bin/eslint-parallel src/js/**See ESLint Docs for all the options
importLinterfrom'eslint-parallel';newLinter({cache: true,cwd: process.cwd()}).execute(['src/js/**']).then((result)=>{constfailed=result.errorCount||result.warningCount;if(failed){// failed}else{// passed}},(err)=>{console.log(err);process.exit(1);});