0.2.1 • Published 9 years ago
eslint-plugin-testcafe v0.2.1
eslint-plugin-testcafe
ESLint rules for testcafe
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-testcafe:
$ npm install eslint-plugin-testcafe --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-testcafe globally.
Recommended configuration
This plugin export a recommended configuration that enforce good practices.
To enable this configuration use the extends property in your .eslintrc config file:
{
"plugins": [
"testcafe"
],
"extends": "plugin:testcafe/recommended"
}See ESLint documentation for more information about extending configuration files.