npm.io
0.1.0 • Published 9 years agoCLI

add-eslint-comment

Licence
MIT
Version
0.1.0
Deps
1
Vulns
0
Weekly
0
Stars
9

Add ESLint Comment

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:

/* eslint no-var:0 */
/* eslint no-alert:0 */
/* eslint eqeqeq:0 */
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 per file
add-eslint-comment -j eslint-result.json

Have fun with add-eslint-comment!

Keywords