🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

eslint-plugin-lab

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-lab

Linting rules for lab testing framework

0.1.0
latest
Version published
Maintainers
1
Created

eslint-plugin-lab

Linting rules for lab testing framework

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-lab:

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

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

Usage

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

{
    "plugins": [
        "lab"
    ]
}

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

{
    "rules": {
        "lab/no-only-experiments": "warn"
    }
}

If you project follows the hapi style guide then your eslint file would look something like this:

{
  "extends": "eslint-config-hapi",
  "plugins": [
      "lab"
  ],
  "rules": {
    "lab/no-only-experiments": "warn"
  }
}

Supported Rules

A Rankida Project

A Rankida Project

FAQs

Package last updated on 20 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts