Package Exports
- eslint-plugin-chai-expect
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-chai-expect) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-plugin-chai-expect
ESLint plugin that checks for common chai.js expect() mistakes
Installation
npm install eslint-plugin-chai-expect
Configuration
Add a plugins
section and specify chai-expect
as a plugin:
{
"plugins": [
"chai-expect"
]
}
Enable the rules that you would like to use:
{
"rules": {
"chai-expect/missing-assertion": 2
}
}
Rules
missing-assertion
- Prevent callingexpect(...)
without an assertion like.to.be.ok
License
eslint-plugin-chai-expect is licensed under the MIT License.