Every time when I trying to add ESLint to an old project, it's painful to fix errors like eqeqeq
or no-var
.
One way is to enable these rules and add eslint comment to the old files to prevent new files breaking these rules.
This is what this tool can do.
Add ESLint comment per file according to the ESLint result.
Before:
var foo;
if (foo == 1) {
alert(foo);
}
After:
var foo;
if (foo == 1) {
alert(foo);
}
Getting Started
Installation
npm install add-eslint-comment -g
Generate ESLint Result JSON
eslint -f json src > eslint-result.json
This will lint your src
directory, formatter the result to json, and output into eslint-result.json
file.
Checkout the documentation for more details.
add-eslint-comment -j eslint-result.json
Have fun with add-eslint-comment!