Skip to content

mrpickles3rd/eslint-plugin-no-only-tests

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-plugin-no-only-tests

Version Downloads CircleCI

ESLint rule for .only tests in mocha and other JS testing libraries.

Currently matches the following test blocks: describe, it, context, tape, test

Installation

First you'll need to install ESLint and the plugin:

npm install --save-dev eslint eslint-plugin-no-only-tests
# OR
yarn add --dev eslint eslint-plugin-no-only-tests

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

Usage

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

{
  "plugins": [
    "no-only-tests"
  ]
}

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

{
  "rules": {
    "no-only-tests/no-only-tests": 2
  }
}

Packages

No packages published

Languages

  • JavaScript 100.0%