summaryrefslogtreecommitdiffstatshomepage
path: root/tests/api (unfollow)
Commit message (Collapse)AuthorLines
3 daysbackend/lint: Do not shadow certain builtinsWolfgang Müller-8/+8
This commit enables ruff's flake8-builtin linter that emits warnings when builtin functions are shadowed. This is useful for builtins like "dict", "list", or "str" which we use often. Given the nature of this program we historically rely a lot on the usage of "id", "hash", and "filter" as variable names which also shadow Python builtins. For now let's ignore those, we have not used any of them in our code and the impact to the codebase would be considerable. This might be revisited in the future.
4 daysbackend/lint: Format overlong lineWolfgang Müller-1/+3
4 daysbackend/lint: Implement flake8-simplify suggestionsWolfgang Müller-1/+1
4 daysbackend/lint: Fix import formattingWolfgang Müller-12/+27