1.0.1 • Published 4 years ago

eslint-plugin-no-named-test-function v1.0.1

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

Build Status semantic-release

eslint-plugin-no-named-test-function

Requires that it and test blocks do not contain named variables.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install no-named-test-function:

$ npm install npm i eslint-plugin-no-named-test-function --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install no-named-test-function globally.

Usage

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

{
	"plugins": ["no-named-test-function"]
}

Then configure the rule to use under the rules section.

{
	"rules": {
		"no-named-test-function/no-named-test-function.js": 2
	}
}