TSLint rules for AVA
$ yarn add tslint-plugin-ava
Configure it in tslint.json
.
{
"extends": [ "tslint-plugin-ava" ],
"rules": {
"no-only": [ true ]
}
}
The rules will only activate in test all files. (PRs welcome).
I only implemented the rule I'm interested in for now. Again PRs or even issues welcome.
- no-only-test - Ensure no
test.only()
are present.