0.0.4 • Published 9 years ago

eslint-plugin-inlinecheck v0.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

eslint-plugin-inlinecheck

Checks if a function will be considered as an inline by the v8 engine.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-inlinecheck:

$ npm install eslint-plugin-inlinecheck --save-dev

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

Usage

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

{
    "plugins": [
        "inlinecheck"
    ]
}

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