Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2025-01-19 | backend: Add basic statistics query endpoint | Wolfgang Müller | -0/+106 | |
For now we simply collect totals for all scrapers, models, and comic associations. These should be sufficient to compile some basic but still interesting statistics. | ||||
2024-11-15 | backend/lint: Do not shadow certain builtins | Wolfgang 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. | ||||
2024-11-14 | backend/lint: Format overlong line | Wolfgang Müller | -1/+3 | |
2024-11-14 | backend/lint: Implement flake8-simplify suggestions | Wolfgang Müller | -1/+1 | |
2024-11-14 | backend/lint: Fix import formatting | Wolfgang Müller | -12/+27 | |