This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
v0.6.3
Disable some rules specifically for *.test.ts
files:
- Allow an "unscoped
this
" keyword, as Mocha lets you dothis.timeout(num)
to set a test-specific timeout. - Allow using the
var!
syntax to make non-null assertions in test files, so we don't have to deal with thenull | undefined
case in test files when we know the result will be valid.