0.0.0 • Published 7 months ago

eslint-plugin-move-inline-comments v0.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 months ago

eslint-plugin-move-inline-comments

pass sonar

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-move-inline-comments:

npm install eslint-plugin-move-inline-comments --save-dev

Usage

Add move-inline-comments to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "move-inline-comments"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "move-inline-comments/rule-name": 2
    }
}

Rules

TODO: Run eslint-doc-generator to generate the rules list.