Title here
Summary here
Spending additional time to write high-quality, readable code is crucial for success in software engineering. Clear and easily comprehensible code not only saves time during development but also simplifies onboarding and collaboration.
In case you are interested, we recommend the following reads for improving your code quality.
A shared code style ensures:
To align with industry standards and avoid reinventing the wheel, we adhere to PEP 8 (Python Enhancement Proposal 8).
We use ruff for Python linting and formatting.
Install ruff via pip install ruff
.
Use ruff format
and ruff check --fix
to keep your code compliant.