3.1.0 • Published 5 years ago
@fintechstudios/eslint-plugin-chai-as-promised v3.1.0
@fintechstudios/eslint-plugin-chai-as-promised
Prevent common problems when using chai-as-promised
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install @fintechstudios/eslint-plugin-chai-as-promised:
$ npm install @fintechstudios/eslint-plugin-chai-as-promised --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install @fintechstudios/eslint-plugin-chai-as-promised globally.
Usage
Add @fintechstudios/chai-as-promised to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"@fintechstudios/eslint-plugin-chai-as-promised"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"@fintechstudios/chai-as-promised/no-unhandled-promises": 2,
"@fintechstudios/chai-as-promised/no-await-in-condition": 2
}
}Or, to just use the configuration above as is, you can simply add the following instead:
{
"extends": ["plugin:@fintechstudios/chai-as-promised/recommended"]
}Supported Rules
no-await-in-condition: Must not use await within chai-as-promised expressionsno-unhandled-promises: Must handle promises returned from chai-as-promised expressions