We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assert.fail
Code like assert.ok(false, 'error message') should be flagged as an error. If possible, add a fix option to translate to assert.fail('error message').
assert.ok(false, 'error message')
assert.fail('error message')
The text was updated successfully, but these errors were encountered:
In theory fixable, but I wouldn't bother as it would be a bit of a pain to replace the correct text range.
Sorry, something went wrong.
threw
GoodForOneFare
No branches or pull requests
Code like
assert.ok(false, 'error message')
should be flagged as an error. If possible, add a fix option to translate toassert.fail('error message')
.The text was updated successfully, but these errors were encountered: