1.0.0 • Published 3 years ago

eslint-plugin-func-block-comments v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

eslint-plugin-func-block-comments

function block comments in javascript

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-func-block-comments:

$ npm install eslint-plugin-func-block-comments --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-func-block-comments globally.

Usage

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

{
    "plugins": [
        "func-block-comments"
    ]
}

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

{
    "rules": {
        "func-block-comments/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here