ESLint rules for mocha.
This plugin requires ESLint 1.4.1
or later.
npm install --save-dev eslint-plugin-mocha
Then add a reference to this plugin and selected rules in your eslint config:
{
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": 2
}
}
See Configuring Eslint on eslint.org for more info.
The documentation of the rules can be found here.
If you are not using mocha you should not use this plugin.