UNPKG

eslint-filtered-fix

Version:

Gain more control over how ESLint fixes are applied.

15 lines (11 loc) 253 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); }); })();