0.1.0 • Published 7 years ago
eslint-plugin-lab v0.1.0
eslint-plugin-lab
Linting rules for lab testing framework
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-lab:
$ npm install eslint-plugin-lab --save-devNote: 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
no-only-experiments- Enforces that there are noexperimentordescribecalls marked asonly()
A Rankida Project
