eslint-fixer
v0.1.5
Published
Promise based function to apply `eslint --fix` to given directory or files.
Downloads
306
Readme
DEPRECATED
eslint-fixer
Simple module which provides a promise based function to apply eslint --fix
to given directory or files.
Usage
const fix = require("eslint-fixer");
fix("./my-file.js")
.then(result => doSomething())
.catch(err => console.error(err));