UNPKG

eslint-nibble

Version:

Ease into ESLint, by fixing one rule at a time

14 lines (11 loc) 254 B
#!/usr/bin/env node var cli = require('../src/cli'); (async function () { var exitCode = await cli.execute(process.argv); /* * Wait for the stdout buffer to drain. */ process.on('exit', function () { process.exit(exitCode); }); })();