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
I'm having a compiler issue when strict is false.
strict
{ "compilerOptions": { "strict": false } }
https://github.com/keroxp/deno-redis/blob/58a197fbbc07aa0688afad59a872d5c719c41460/redis.ts#L528-L530
It would be nice if it checks the type properly, like typeof reply !== "undefined" instead of reply != null.
typeof reply !== "undefined"
reply != null
I also tried only to enable strictNullChecks, but std complained. So I can't enable strict mode partially.
strictNullChecks
std
{ "compilerOptions": { "strict": false, "strictNullChecks": true } }
The text was updated successfully, but these errors were encountered:
@suguru03 PR welcome
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I'm having a compiler issue when
strict
is false.https://github.com/keroxp/deno-redis/blob/58a197fbbc07aa0688afad59a872d5c719c41460/redis.ts#L528-L530
It would be nice if it checks the type properly, like
typeof reply !== "undefined"
instead ofreply != null
.I also tried only to enable
strictNullChecks
, butstd
complained. So I can't enable strict mode partially.The text was updated successfully, but these errors were encountered: