upstash / redis-py

HTTP based Python Redis Client for Serverless and Edge Functions
https://docs.upstash.com/redis
MIT License
29 stars 3 forks source link

This one is optional, but we should be using static analysis and linter tools to have a better codebase. A popular stack is: mypy, black, ruff, and isort. We can make use of these tools. #9

Open chronark opened 1 year ago

chronark commented 1 year ago

This one is optional, but we should be using static analysis and linter tools to have a better codebase. A popular stack is: mypy, black, ruff, and isort. We can make use of these tools.

chronark commented 1 year ago

sgtm

TudorZgimbau commented 1 year ago

Strictly speaking mypy, I've used it and manually checked a lot of errors. While it's very useful if you have the patience to distinct between false positives and actual errors, I wouldn't block anything because of it (especially if the other tests are passing). Related to this typing issue.