tslint-mocha
v1.0.2
Published
TSLint rules for Mocha test runner
Readme
tslint-mocha
This package provides a TSLint rule that help to enforce some best practices when using Mocha test runner.
Supported rules
mocha-no-only- to avoid usingit.only()or similar methods.
How to install
- Run
npm install --save-dev tslint-mocha - Add to your
tslint.jsonfile:
"rules": {
"mocha-no-only": true
},
"rulesDirectory": [
"tslint-mocha"
]
